Forum Discussion
RyanHare92
2 years agoHelper I
Multiple matches when only one expected
This is driving me crazy! I have the folowing measure: Assessment_Grading_Ready =
VAR _Table =
ADDCOLUMNS(
FILTER(
Historic_Script_Type,
Historic_Script_...
Greg_Deckler
2 years agoCommunity Champion
RyanHare92 Because you are always returning a value, Yes or No so basically every combination will return some value and thus be shown in the visual. With your revision, some combinations return BLANK and thus are automatically excluded from the visual. You *might* be able to fix this by using an == instead of an =. That should force it to match only on a zero and not on both a zero and a blank.