Sort list of a dependent dropdown in Appsheet

 

Here is my 'Valid if' formula to limit my list of names in the dropdown (dependent on two variables)

but the list are not alphabetically arranged, 

Select(Stock Inventory[Item Name],AND([_THISROW].[Site]=[Site],[_THISROW].[Category]=[Category]))

How Can I Sort them alphabetically

Tried ORDERBY(Stock Inventory[Item Name], [Item Name) 

Help!

Solved Solved
0 3 175
2 ACCEPTED SOLUTIONS

SORT()

ORDERBY() is only for key values.

View solution in original post

sort(Select(Stock Inventory[Item Name],AND([_THISROW].[Site]=[Site],[_THISROW].[Category]=[Category])),false)

View solution in original post

3 REPLIES 3

SORT()

ORDERBY() is only for key values.

sort(Select(Stock Inventory[Item Name],AND([_THISROW].[Site]=[Site],[_THISROW].[Category]=[Category])),false)

Thank you!!!

Top Labels in this Space