Forum Discussion
barragan82
11 months agoHelper II
Measure for Generating Custom Text
Hi all, I am trying create a measure that will generate a specific word, “Meets”, when certain values are present. In Column “Grade”, there are four possible values: A, B, C and D. I would like t...
- 11 months ago
Hi, if each row has only one grade value A, B, C, or D, try measure below and 'Show items with no data' for Names.
Measure=
IF (
CALCULATE ( COUNTROWS ( FILTER ( Table, Table[Grade] IN { "A", "B" } ) ) ) > 0,
"Meets"
)
MasonMA
11 months agoSuper User
Hi, if each row has only one grade value A, B, C, or D, try measure below and 'Show items with no data' for Names.
Measure=
IF (
CALCULATE ( COUNTROWS ( FILTER ( Table, Table[Grade] IN { "A", "B" } ) ) ) > 0,
"Meets"
)
barragan82
11 months agoHelper II
MasonMA , you came through again! Worked exactly as I wanted. Thank you!!!