I have a formula that uses a match and index function to display the correct data. I have a dropdown list of values in cell ("B3"). The formula finds the matching value of cell ("B3") on sheet ("Competitor Comparison Data") which allows me display different sets of data, depending on what value I choose in the list of values in cell ("B3").
My current formula is this:
=IFERROR(INDEX('Competitor Comparison Data'!H:H,MATCH($B$3,'Competitor Comparison Data'!$D:$D,0)+ROWS($A$8:$A8)-1),"No Match")
I'm trying to have this formula adjusted so that the values in Row 7 on the current sheet matches the values in Row 5 on Sheet ("Competitor Comparison Data"), then take the values of that column in Sheet ("Competitor Comparison Data").
The purpose is this: I have a listbox of the values in Row 7. These values are competitor names. The listbox allows for a user to rearrange the list items. When the use clicks the "Close" button, the new order of the listbox items becomes the new column headers in Row 7. So the index and match formula will be able to see that the column header is now a different competitor name and the data will change to match to the corresponding data.
Any ideas?
My current formula is this:
=IFERROR(INDEX('Competitor Comparison Data'!H:H,MATCH($B$3,'Competitor Comparison Data'!$D:$D,0)+ROWS($A$8:$A8)-1),"No Match")
I'm trying to have this formula adjusted so that the values in Row 7 on the current sheet matches the values in Row 5 on Sheet ("Competitor Comparison Data"), then take the values of that column in Sheet ("Competitor Comparison Data").
The purpose is this: I have a listbox of the values in Row 7. These values are competitor names. The listbox allows for a user to rearrange the list items. When the use clicks the "Close" button, the new order of the listbox items becomes the new column headers in Row 7. So the index and match formula will be able to see that the column header is now a different competitor name and the data will change to match to the corresponding data.
Any ideas?