Hi there! - I am trying to filter a gallery by a variable that has been passed over to the screen where the gallery sits.
DemandFamily is the variable and does have a value when trying to filter.
Navigate('Filter Down Screen', ScreenTransition.UnCoverRight, {DemandFamily: ThisItem.'Family Name'} < This is how the variable gets its value
Filter(
SKUs,
'Demand Family'.'Family Name' = 'Demand Family Dropdown_2'.Selected.Result
) << Works
Filter(
SKUs,
'Demand Family'.'Family Name' = DemandFamily
) << Brakes the gallery
Any ideas?