Forum Discussion
Anonymous
3 years agoNot applicable
Dax Calc countif
I need help figuring out how to write this formula in dax. COUNT IF [F RETAIL FH FIRST/FURTHER] = "FIRST" OR "FURTHER"
- Anonymous3 years ago
Hi Anonymous ,
Text is not computable for aggregation, I think you need to convert the data type first.
Through here to change the data type:
and then you can do some calculation.
Refer to my pbix file for better understanding.
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
ERD
Community Champion
3 years agoAnonymous ,
You can try the measure below:
your_measure =
IF (
'F RETAIL FH FIRST'[FURTHER] IN { "FIRST", "FURTHER" },
COUNT ( 'F RETAIL FH FIRST'[FURTHER] )
)Anonymous
3 years agoNot applicable
Thanks for the answer, but that syntax does not work.
- ERD3 years ago
Community Champion
What's the error?
- Anonymous3 years agoNot applicable
I dont think and if will work for dax. I am just looking to COUNT [F RETAIL FH FIRST/FURTHER] when its = to "FIRST" OR "FURTHER"
- ERD3 years ago
Community Champion
Ok, here is another option:
your_measure = CALCULATE ( COUNT ( 'F RETAIL FH FIRST'[FURTHER] ), 'F RETAIL FH FIRST'[FURTHER] IN { "FIRST", "FURTHER" } )