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....
amitchandak
6 years agoSuper User
@JCK2, try DAX
if( not(isblank([measure])), if([measure] > [measure1], 1 , 0),blank())