Hi,
I have a grid where column A takes the size of an array and, depending on if the status in column B is right, outputs the array's length. If the status is not right, the output is a -. When I sort, the underlying value from the field is sorted, whereas I want the cell's value to be sorted. The column may look like this:
5
3
-
6
-
4
and I would want it to sort to
6
5
4
3
-
-
Currently it sorts to because the underlying value of the - is 6 and 4
6
-
5
4
-
3
Is there any way to sort by the cell and not the field?