Hello,
My scenario - I need to lookup at a value in an array and get all the rows and columns that have that value
For example:
Country || City || Revenue
India || Hyderabad || 100
India || Delhi || 150
US || Chicago || 200
US || NewYork || 180
US || Vegas || 200
I want to get the following result by looking at value 'US' and project on my bar chart
US || Chicago || 200
US || NewYork || 180
US || Vegas || 200
I am not sure how can I do this with Index & Match. Any thoughts?