Its possible to make list view with auto sort A-Z from sheet data

Hi
It's possible to create list view with auto sort A-Z column data.
Exm: Google sheet column 2 data is (5,1,3,2,4) when I make list, data show like as
5
1
3
2
4
But I have need to List view show like this,
1
2
4
5
How can I do this?

You can use AppyBuilder's ListUtils extension

Not it's possible on appinventor?

Yes my blocks are from App Inventor, you can try it yourself :slight_smile:

If you want to do it with just blocks (these are draggable). Credits @Saj

Or sort the data on the spreadsheet using a google apps script, then download it to your app:

range.sort({column: 2, ascending: false});
1 Like