Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a field of passfailflag,
I want to create chart for the fail, so in the dimension how can i create calculated dimension for fail.
I think its better to use set analysis in your chart. May be like this:
{<passfailflag = {'fail'}>}
or if you still want to use dimension, you can try this:
If(passfailfalg = 'fail', passfailflag)
UPDATE: Just made sure to check 'Suppress When Value Is Null' option on the dimensions tab if you plan to use the calculated dimensions
Create a dimension as :
=if(passfailflag = 'fail' , 'Fail' , Null())
and uncheck the suppress null values checkbox .
{<passfailflag = {'fail'}>} its showing garbage error, will that set analysis will work?
Using that alone will not work, it needs to be added to you current expression's set analysis. What is the current expression/s you are using?
garbage after expression "='
You are getting this for the set analysis or the dimensions?