Forum Discussion
A measure using IF condition with a column reference
7 Replies
- kmartinkFrequent Visitor
Hi tamerj1,
yes what I've created is a measure. I was wondering if the problem might be caused either by that the formula accidentally summarizes all the rows of the "Score" column which would mean the result would be always higher than 80% and so the zero will be displayed? Or either that my "Score" has the Data type "decimal number" and the format "percentage" but the formula uses "0.8" for 80%?
Is there any other way how to rewrite the formula so it might not be accidentally summing up all the rows of the column "Score" if that's the case what's happening right now? I already tried to use "AVERAGE" instead of "SUM" but there wasn't any difference. Thanks.
- kmartinkFrequent Visitor
- tamerj1
Community Champion
I guess you are just trying to have in a card visual the count of the days that have scores less than 0.8?
if this is the case please try
Low Score =
SUMX (
DISTINCTCOUNT ( 'Table'[Date] ),
IF ( CALCULATE ( SUM ( 'Table'[Score] ) ) < 0.8, 1 )
)