I have a spreadsheet being used to manage content while a site is being developed. There are columns for keyword tags (subcategory IDs), and an asset row is checked with an X if that tag applies to that asset. This extends from column Z through column GT.
I would like to find a way to list in one cell all of the tags applied to an asset.
I found a terrific post from this site last week about pulling in a column heading for the first value in a row, which worked for a task I was doing last week--now I'd like to find out how to pull in the column heading for every value in this range.
This is the formula I copied for the previous effort:
=IF(COUNTA($Z2:$GT2)=0,"",INDEX($Z$1:$GT$1,MATCH(TRUE,INDEX($Z2:$GT2<>"",0),0)))
Thanks for any tips!