Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a list box created with an expression =[Product ID] & ' - ' & [Product Description] that has values like
001 - abc
123 - bcs
234 - 276
I want to sort the list box by the product Description in ascending order. Kindly suggest!
Thanks!
May be try a sort expression like this
Only({1} [Product Description])
and select ascending
Did not work
Would you be able to share a sample where this isn't working?
I have attached a sample.
Can you do like
= ProductDescription & '-' & [Product ID]
Then Sort tab -> Check Text - A-Z.
Will that work?
Does not work
Try this
Rank(Only({1} [ProductDescription]))
With Descending sort
Thank you Sunny. This is correct!
Thanks Sunny, its been long go I have used something like Rank in sort. Thanks for refreshing memory. 🙂