Forum Discussion
Countifs + Filter in Dax
- 3 years ago
Thanks for the help, but I think I solved it using this after watching a few videos.
CountNew =SUMX(SUMMARIZE(Data,'Date'[Month Year],Data[company_name],Data[Plan_edit],"Total_count",1),[Total_count])
Hi , MonyridhYady
(1)For your first need , you just need to put the filed on the visual , like this :
And my test data is as follows:
(2)For you second need ,This is my test data:
We need to click "New measure "to create a measure :
Measure = var _t = FILTER('Table2','Table2'[stausplan_name] ="EXISTING")
return
COUNTROWS(_t)
Then we put the filed in the visual and we will meet your need :
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks for the help, but I think I solved it using this after watching a few videos.