Forum Discussion
Measures
7 Replies
- PabloDehezaSolution Sage
Hi there!
For what I can see you want to check if every count is blank, then you want to display the message. So I think the correct measure would be this one:
Measure =
IF(
ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_AT_RISK1] ) )
&& ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_OFF_TRACK] ) )
&& ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_ON_TRACK] ) ),
"No data available for on-track vs off-track vs at-risk projects",
BLANK()
)Let me know if that helps!
- AnonymousNot applicable
Hey i tried that and it is returning this:
- PabloDehezaSolution Sage
Oh right, I added a BLANK at the end, lets replace that with "" as you did before:
IF(
ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_AT_RISK1] ) )
&& ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_OFF_TRACK] ) )
&& ISBLANK( COUNT( PROJECT_DATABRICKS[CNT_ON_TRACK] ) ),
"No data available for on-track vs off-track vs at-risk projects",
""
)