Details-
List name: FoodOption
Columns: Cat , ItemRef , Description , Price
I am trying to present details/description of an item when selected in a dropdown menu, I will have multiple of these for each 'cat' but they are standalone so won't affect each other.
For the dropdown menu I have:
Filter(FoodOption,Cat="Refreshments").ItemRef
I was going to then use this result for the filter of a gallery view (Will only show one as the Itemref is unique) I feel I maybe going about filtering the gallery all wrong I was simply going to use a similar filter as above but reference the dropdown so:
Filter(FoodOption,ItemRef=Dropdown1 <- But at this part I see others use selected value but it doesn't work for me it says that isn't an option so I am left with 'Dropdown1' which comes up with "This data type is unsupported for evaluation"
Any nudges in the right direction?