Page 1 of 1

Script to sort by "Extra2" column ?

Posted: 15 Dec 2016 08:40
by xnmp
i know how to sort by "modified date" column ascending

Code: Select all

sortby m, a;
i want to use the similar script to sort by extra2 column ascending,but i have no idea how to sort by extra2 column
("m" for modified date , but i don't know what for extra2 ?)
Thanks

Re: Script to sort by "Extra2" column ?

Posted: 15 Dec 2016 08:58
by highend
Use the name of the column?

Code: Select all

sortby "extra 2", a;
or whatever name you've given it...

Re: Script to sort by "Extra2" column ?

Posted: 15 Dec 2016 09:28
by xnmp
Thank you very much it works !
now i see why i tried with "extra2" and it not work ( it should be "extra 2" ) :mrgreen:
Thanks again !