Greetings, inside one of the column I have values like the following:
9-7
9-18
9-142
At the moment, when I sort based on this column I have to following:
9-142
9-18
9-7
I would like to sort these values to be ordered as follows:
9-7 (so it would be 9-007)
9-18 (so it would be 9-018)
9-142
I tried to following format:
=Format(Fields!ShelfNumber.Value,"000-000")
But it doesn't work. Can someone help me, please?