Hi Alteryx pros!
I have a table:
Acc | Amount|
2200 9000
2300 800
2400 70000
I need to sort it out so that the result should look like:
Acc | Amount|
2400 70000
2200 9000
2300 800
The logic is from Largest value to the smallest or vice versa.
I'm getting result where it is sorted as:
Acc | Amount|
2200 9000
2300 800
2400 70000
The logic of which is the start number of the data I guess.
Please help!
Thank you in advance!