Forum Discussion
Anonymous
5 years agoNot applicable
Filter error to exclude blanks
Hi Experts I cannot see the error here in my DAX' the filter filter is correct when I want to count the values and exclude blanks from second column I get an error.. Non MS Apps. = CALCULATE(...
- 5 years ago
should you not use && rather than ||? what error are you getting
Non MS Apps. =
CALCULATE (
COUNT ( JohnH_SPO_EUCPriorityListAllDiv[Count] ),
FILTER (
JohnH_SPO_EUCPriorityListAllDiv,
JohnH_SPO_EUCPriorityListAllDiv[Microsoft or Not] = "Retain"
&& JohnH_SPO_EUCPriorityListAllDiv[Risk Based Criteria] <> BLANK ()
)
)
vanessafvg
5 years agoCommunity Champion
should you not use && rather than ||? what error are you getting
Non MS Apps. =
CALCULATE (
COUNT ( JohnH_SPO_EUCPriorityListAllDiv[Count] ),
FILTER (
JohnH_SPO_EUCPriorityListAllDiv,
JohnH_SPO_EUCPriorityListAllDiv[Microsoft or Not] = "Retain"
&& JohnH_SPO_EUCPriorityListAllDiv[Risk Based Criteria] <> BLANK ()
)
)
Anonymous
5 years agoNot applicable
Thank you sir