I'm having a hard time wrapping my mind around how to approach this...
Say I have a table with several items with different potential properties, which are assigned a boolean value for each property for each item. (in this case we have several options for each "color" and "size")
| Color | Size
-----------------------------------------------------------------------
Item | Red | Blue | White | Black | Tan | Large | Medium | Small
-----------------------------------------------------------------------
Pants | | y | | y | y | y | y | y |
Shirt | y | | y | y | | y | y | y |
Skirt | | y | y | | | | y | y |
Socks | y | y | y | y | y | y | y | y |
And I want to then output this into a single column like:
Pants, Blue, Large
Pants, Blue, Medium
Pants, Blue, Small
Pants, Black, Large
Pants, Black, Medium
Pants, Black, Small
Pants, Tan, Large
Pants, Tan, Medium
Pants, Tan, Small
Shirt, Red, Large
etc etc
So, I'm trying to populate a column with all the possible results of the true values for each row, concatenated with the header for each column that has a true value. In this example, it would further break out color and size for each item.
Thoughts on the best approach to this in Google Sheets?
Example sheet: https://docs.google.com/spreadsheets/d/199msbUtUuZzb0HvBMgjQW98hRt3StFEyUFfTfLzSQzw/edit?usp=sharing