Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I tried to order with a dimension match function . I give you an example :
match ( TEAM, 'Madrid' , 'Barcelona' , 'Sevilla ', ' Oviedo ' )
This put it in -> Sort - Expression
But when one team has "0" placed me in the first position. I want Although the value is null, is it possible to continue to keep the order I put it , any suggestions?
Thank You !!
Hi,
Try this
match ( TEAM, 'Madrid' , 'Barcelona' , 'Sevilla ', ' Oviedo ', '*' )
Regards,
Jagan.
Hello!
if(match ( TEAM, 'Madrid' , 'Barcelona' , 'Sevilla ', ' Oviedo ' )>=1,match ( TEAM, 'Madrid' , 'Barcelona' , 'Sevilla ', ' Oviedo ' ),99)
SOLUTION: