Show the list on a deck by sorted date

Hello guys,

 

I have two columns in my app which are [product] and [pickup_date]. I need to know how to get the user to see a list of the last 20 products sorted by Pickup Date on a deck?

 

Thank you very much for your help

Solved Solved
0 2 52
1 ACCEPTED SOLUTION

Create a slice with the following row filter condition:

IN([pickup_date], TOP( SORT(table[pickup_date], TRUE), 20 ))

View solution in original post

2 REPLIES 2

Create a slice with the following row filter condition:

IN([pickup_date], TOP( SORT(table[pickup_date], TRUE), 20 ))

Thank you Sir!

Top Labels in this Space