Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi i would like to have a custom sort function on the dimension itemnumber
so that all the numbers beginning with 9 come first in the list.
i have tried the following ;
=match(left,Itemnumber,1))
Best,
Bradley
i would create a field in the script,
if(left(itemnumber, 1)=9, 1, 2 as xxx
and then sort by that field ascending
Maybe like this:
= -match(left(Value,1),9)
or even just
= -left(Value,1)
as sort expression. But how do you want to sort the other values?
Hi,
if(Left(Value,1)=9,-1,Value) and sort ascending.