hi everyone,
how can i alphabeticly sort items of dropdown?
a) child-Table: dropdown of column “Street” (items comming from parent-table …)
b) column: “Street” of child-table is connected with “REF” to column “Street” of parent-table:
c) parent-table:
how can i alphabeticly sort items of dropdown?
thank`s in advance for any help!
In the child table’s reference column [DD_Street[, please have the following expression in the valid_if setting
ORDERBY(DD_DropDownParent[DD_UniqueID], [DD_Street], TRUE) for sort descending
ORDERBY(DD_DropDownParent[DD_UniqueID], [DD_Street], FALSE) for sort ascending
ORDERBY() - AppSheet Help
3 Likes
Hi @Suvrutt_Gurjar ,
Hi @Aurelien ,
thank you very much for hint with “Valid_If” field - i have tested it out - it works perfekt!
2 Likes