Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
varunreddy
Creator III
Creator III

Is there a way to sort data for input box

Hi,

I am using input box to select the dates, and I want to sort the dates in descending order. Can any one guide me?

Thanks in advance!

Cheers!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe just use a negative sort weight:

=

Concat(Distinct([As of Date]), ',', -[As of Date])

View solution in original post

5 Replies
sunny_talwar

What expression are you using in your input box?

varunreddy
Creator III
Creator III
Author

 

=

Concat(Distinct([As of Date]), ',', [As of Date])

krishna_2644
Specialist III
Specialist III

As Far as i know theres no sort on input box, it just takes value(s) from the user to store that value in a variable.

swuehl
MVP
MVP

Maybe just use a negative sort weight:

=

Concat(Distinct([As of Date]), ',', -[As of Date])

varunreddy
Creator III
Creator III
Author

Hi Swuehl,

Thank You for your time. Negative sort weight works!

Cheers!