Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Its a straightforward question:
I have Status Field in my dimension and one expression.
Status field having values Open,Closed, OnHold,Freeze and Waiting. I want to show all the values except Closed.
For this I wrote below expression in Calculated dimension
Only({<Status -= {'Closed'}>} Status)
It not showing any error message but it not showing the correct value also. Please help
if we want to give in calculated dimension, then
Aggr(Only({<Status -= {'Closed'}>} Status),Status)
Try Only({<Status <> {'Closed'}>} Status)
or
Only({<Status = {"*"} - {'Closed'}>} Status)
Put the condition in the expression instead: Count({<Status-={Closed}>}IssueID).
if we want to give in calculated dimension, then
Aggr(Only({<Status -= {'Closed'}>} Status),Status)