How to create a top sales ranking

I have this table and I want to create a view that only shows me the 2 names that sold the most. How can I do it ?

IDNamesolddate
fdsfsdEduardo1002/20/2022
fdsf23Jack20002/20/2022
fdsf54Sam60002/20/2022
fdsf76Bill20002/20/2022
fdsf43Eduardo20002/20/2022
fdsf76Bill10002/20/2022
fdsf65John2002/20/2022
fdsf23Sam3002/20/2022
0 1 97
1 REPLY 1

Please evaluate below options.

1. You could simply sort on the [Sold] column in your table view  by tapping on the [Sold] column heading if you are allowing summary views sorting by the user.

Suvrutt_Gurjar_0-1649823730174.png

 

OR else

2. You could use sort by [Sold} column in the table view.

https://help.appsheet.com/en/articles/961513-controlling-row-sort-order

3. Or else if you are only needing the top 2 sellers in the view,

Please create a slice with an expression

IN([ID], TOP(ORDERBY(Table Name[ID], [Sold], TRUE),2))

Please base your view on that slice.

https://help.appsheet.com/en/articles/2357312-orderby

Top Labels in this Space