Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to sort the four graphs :
problem 1 : the x axis
problem 2 : the legend , i want to go from insufficent to high and the color red will be for insufficent , yellow for intermediate and green for high
dimension 1 : = replace(class([SCORE 1],10),'<= x <','->')
dimension 2 :
Expression : = count(DISTINCT Users)
Thank you in advance ++
Ok. then you may resolve it in this way (simplified): dual(replace(class()), class())
Class() returned a dual() and could be therefore directly numeric sorted. But your replace() makes a string from it. If you don't like the default '<= x <' you could specify your wanted delimiter as the third parameter of class().
Also the nested if-loops could be simplified just by querying if the score is smaller as 10 and greater as 30.
Hi @marcus_sommer thank you for your response.
from what I understood, the third parameter of class() replaces the value of x in a<=x<b not the form of the segment.
regards
Ok. then you may resolve it in this way (simplified): dual(replace(class()), class())