Forum Discussion
JCK2
6 years agoHelper III
KPI Indicator
Hello,
Im looking to calculate an indicator, which says, if my measure is not blank ( first condition), then check if my measure is greater than target ( second condition), then give me 1 else 0.
Green Indicator= If is not blank [measure], [measure] > [measure1] then 1 else 0
@JCK2, try DAX
if( not(isblank([measure])), if([measure] > [measure1], 1 , 0),blank())
- Anonymous6 years ago
Hello @JCK2 ,
Check
Green Indicator= IF([measure]<>BLANK()&&[measure]>[target],1,0)Best regards
Jay
2 Replies
- amitchandakSuper User
@JCK2, try DAX
if( not(isblank([measure])), if([measure] > [measure1], 1 , 0),blank())
- AnonymousNot applicable
Hello @JCK2 ,
Check
Green Indicator= IF([measure]<>BLANK()&&[measure]>[target],1,0)Best regards
Jay