Forum Discussion
abeirne
Helper II
4 years agoHelp with count measure (true/false expression does not specify a column)
Hi all, I am trying a measure that calculates % of valid emails. I have the column filtered in power query and outputs "Not Valid" when email does not meet a certain criteria. % Valid Emails = ...
- 4 years ago
abeirne hey, try this:
% Valid Emails = VAR Valid = CALCULATE( COUNT(Invoice_Tb[Customer Email (Clean)]), Invoice_Tb[Customer Email (Clean)] <> "Not Valid" ) VAR PercentDiv = DIVIDE( COUNT(Invoice_Tb[Customer Email (Clean)]), Valid ) RETURN PercentDiv * 100
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
SpartaBI
Community Champion
4 years agoabeirne hey, try this:
% Valid Emails =
VAR Valid =
CALCULATE(
COUNT(Invoice_Tb[Customer Email (Clean)]),
Invoice_Tb[Customer Email (Clean)] <> "Not Valid"
)
VAR PercentDiv =
DIVIDE(
COUNT(Invoice_Tb[Customer Email (Clean)]),
Valid
)
RETURN
PercentDiv * 100
In case it answered your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
abeirne
Helper II
4 years agoThanks! My divide was also backwards but the measure is working now 🙂