Hi, I am working on something that requires to sort the Smartsheet based on a column.
The type of column is 'TEXT_NUMBER'.
1/0/12
1/0/1
1/0/14
1/0/3
1/0/11
After sorting the smartsheet with the above column the result is this
1/0/1
1/0/11
1/0/12
1/0/14
1/0/3
I am using python sdk in my project, but it doesn't sort all the rows, the rows are sorted in some chunks.
Like some of the rows are sorted together and some are not.
Has anyone faced similar issue?
If yes, how was it resolved?