Forum Discussion
Ramendra
5 years agoHelper IV
calculate syntax
Hi Team, Can some one help me to know for below syntax in Power BI measure Count column A values if column B contains value=XYZ and if column c contains value= ABC or PQR
- 5 years ago
Just add a NOT to that part:
Measure = CALCULATE(COUNT(Table1[ColA]), Table1[ColB] ="XYZ", NOT Table1[ColC] IN {"ABC", "PCR"} )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
AlB
5 years agoCommunity Champion
Hi Ramendra
Measure = CALCULATE(COUNT(Table1[ColA]), Table1[ColB] ="XYZ", Table1[ColC] IN {"ABC", "PCR"} )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers