Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a file with different column : Timestamp field, number1, number2, number3, number4. I am loading this file and create a Cross table
Cross table :
- column2 : expression = number1+number2+number3+number3
- column4 : depending of the value in the column 2 I display : green, warning or error (threshold value)
=if (num(Column(1)) < warningv,'green',
if (num(Column(1)) < errorv,'warning',
if (num(Column(1)) > errorv,'error',Null())))
Now from this cross table I would like create a graph representing the number of percentage of green, warning and error.
Could you help me how can I do it please?
thks
Valery