Forum Discussion
Del235
3 years agoHelper III
Count not calculating correctly
I am trying to count text in a column but I'm getting incorrect values. Example: I have two columns Visit Date Attendance Promoter-Detractor 7/9/2023 0:00 Promoter 7/9/2023 0:00 Pr...
Del235
3 years agoHelper III
Same result
Anonymous
3 years agoNot applicable
You're using a DAX measure? That tested successfully for me...
Count of Promoter-Detractor for Promoter =
COUNTROWS(
FILTER('CUSTOMER_FEEDBACK_TABLE',
'CUSTOMER_FEEDBACK_TABLE'[Promoter-Detractor] = "Promoter"
)
)