Hi everyone. I have two sheets and need to pull from one to the other. One sheet lists widgets and data about them, the second lists press releases and includes {press release tracking Range 2}, which is a column listing all of the widgets listed in that press release.
So, the widget sheet is:
Widget Press release mentioned?
Widget 1 formula here
Widget 2 formula here
Widget 3 formula here
The press release sheet includes this sort of data:
Press release
Press release 122 Widget 1, Widget 3
Press release 125 Widget 2, Widget25
In the "formula here" section, I currently have =INDEX({press release tracking Range 1}, MATCH(widget@row, CONTAINS(widget@row, {press release tracking Range 2}))) but this gives me a #NO MATCH error. The expected behavior would be for the "widget sheet" to return "Press release 122" in the "formula here" cell for "widget 1". I'm not sure if INDEX, MATCH is my best bet, but I cannot find another way. Really hoping someone can help me out!