I have a spreadsheet with the a column for Location and a column for channel. It's organized as follows:
Column A - Column B
LocationA - Channel 1
LocationA - Channel 2
LocationA - Channel 4
LocationB - Channel 2
LocationB - Channel 3
I'm trying to populate a second sheet thats organized as follows:
Channel 1 Channel 2 Channel 3 Channel 4
LocationA
LocationB
LocationC
I'm trying to add text to each channel column if the Location contains that channel.
I've tried to use this formula:
=INDEX(B:B,MATCH(C2,A:A,0))
But it doesnt confirm that the result matches the Channel column. If I manipulate the main data set and filter by Channel first, it works, but I'm hoping there is a way to avoid the front end work to make it more scalable.