I'm using the following in the Items of a Dropdown.
SortByColumns(ApparatusDtlCollection.Park,"Title",Ascending)
This return All 'Title' in order. Some Title appear multiple times.
How can the formula be edited to return the 'Title' only once.
Regardless of the number of times a Title may appears on the list
it should only show once in the Dropdown. There is currently no
associated 'Depends On' dropdown created.
Solved! Go to Solution.
Sort(Distinct(ApparatusDtlCollection.Park,"Title"),Ascending)
Assuming ApparatusDtlCollection.Park is the table now.
Hello!
You are looking for the Distinct function.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-distinct
Sort(Distinct(ApparatusDtlCollection.Park,"Title"),Ascending)
Assuming ApparatusDtlCollection.Park is the table now.
Winner-Winner, Chicken Dinner!
Thanks!
User | Count |
---|---|
160 | |
91 | |
67 | |
63 | |
63 |
User | Count |
---|---|
214 | |
157 | |
97 | |
86 | |
77 |