Hello,
I have a set of data that is sorted by a column called DataOrder. It is numbered from 1 through 12, see table below for example. The Issue I'm having is that powerapps does not sort it in the way I would expect, from 1 to 12 in order, it actually sorts like this:
1,10,11,12,2,3,4,5,6,7,8,9
This is incredibly annoying, since I specifically put in a column called DataOrder to order my data in the way you would expect...
It works the way you would expect for a data set less than 10, since it counts from 1 to 9 and then that's it.
Here is my code for reference: Sort(Table1,DataOrder,SortOrder.Ascending)
Does anyone know how I can fix this?
DataOrder