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?
Not it's possible on appinventor?
Yes my blocks are from App Inventor, you can try it yourself
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