Hi Community - I haven't been able to figure this one out but I am hoping it's pretty simple. The issue is that the list of items in my drop down are not sorted properly in accordance with the code listed below. To get the items for my drop down, I am finding the distinct values from my column called "Column Name" which is stored in a SharePoint List called "ListName". I am then looking to sort these in ascneding order.
Thanks in advance.
Sort(
Distinct(
'ListName',
Trim('ColumnName')
),
Ascending
)