Hi @Digitalartnet
Add this filter expression to the 'Items' property of your Gallery:
Filter(
YourListName,
LengthFieldName >= 390 && LengthFieldName <= 420
)
Then add labels to your gallery to surface whatever fields from your filtered dataset (in each label text property eg 'ThisItem.LengthFieldName' / 'ThisItem.WidthFieldName'/ 'ThisItem.HeightFieldName'
Note the filter statement above is obviously hardcoded as 390 to 420, but you could have two text input controls above your gallery (say Textinput1 and TextInput2 for lower and upper length bounds) - then feed those figures dynamically into your filter statement like as follows:
Filter(
YourListName,
LengthFieldName >= Value(TextInput1.Text) && LengthFieldName <= Value(TextInput2.Text)
)
(Note your TextInputs#.Texts are wrapped in Values above to ensure data types match, but in most cases Power Apps is clever enough to recognise the number in the text inputs and the Value(..) aspect is not required.
Hope this helps