Thanks but it is proving very tricky to get working.
Drop down (combo is called M_Filter_Property and is set to)
M_Filter_Property.onchange = Set(MyProperty, Properties_ADAMM.Selected.Value)
The drop down now errors with "The types of the specified context varaiables are incompatible with the types specified elsewhere". No indication where/what it is incompatible with.
FYI - Properties_ADAMM is our entitiy with each property & it's details.
On the assets (screen 2) gallery I tried.
Gallery_Asset_View.Items = filter(Assets_ADAMM, PropertyAcronym = MyProperty)
It didn't work, I'm assuming due to the error on the drop down.
For reference we have built a stacked filter to allow searching by many fields, the filter function will stack into the follwing;
Sort(If(IsBlank(TextInput_Asset_View.Text), Assets_ADAMM, Filter(Assets_ADAMM,TextInput_Asset_View.Text in AssetName,TextInput_Asset_View.Text in LocationofAsset, TextInput_Asset_View.Text in Manufacturer, TextInput_Asset_View.Text in Model, TextInput_Asset_View.Text in RatingorCapacity, TextInput_Asset_View.Text in SerialNumber)), AssetName, If(SortDescending2, SortOrder.Descending, SortOrder.Ascending))