Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Michaels
Contributor III
Contributor III

Listbox sort date MMMM YYYY

Hi, 

I have a field Date formating like  this : January 2019, February 2019, ...

I have a listbox with field and I would like to sort by decreasing date, I try with  date#(Date, 'MMMM YYYY')

Data is correctly sort when there is no selection but when I select one date the other are group by month : 

December 2020
December 2019

November 2020

November 2019

 

Any ideas ? 

Thanks

1 Solution

Accepted Solutions
sunny_talwar

Are you using this as your sort expression? date#(Date, 'MMMM YYYY'), may be try using this instead

Only({1} Date#(Date, 'MMMM YYYY'))

View solution in original post

2 Replies
sunny_talwar

Are you using this as your sort expression? date#(Date, 'MMMM YYYY'), may be try using this instead

Only({1} Date#(Date, 'MMMM YYYY'))
Michaels
Contributor III
Contributor III
Author

It works ! Thank you !