Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Don't know how to do this ?
Thanks
You should create a numeric order number field in your script:
LOAD
Order,
keepchar(Order,'0123456789') as OrderNum,
...
Then you can use e.g. for 1. orders:
=FirstSortedValue(Order,OrderNum,1)
and second orders:
=FirstSortedValue(Order,OrderNum,2)
See also attached.
You should create a numeric order number field in your script:
LOAD
Order,
keepchar(Order,'0123456789') as OrderNum,
...
Then you can use e.g. for 1. orders:
=FirstSortedValue(Order,OrderNum,1)
and second orders:
=FirstSortedValue(Order,OrderNum,2)
See also attached.
Thank you very mutch. This is exactly that i want