Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello guys,
I have following table
| month |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
And I need to create measure that will return count of month and not be affected by selection/filter of months, I create this DAX formula, but for unknown reason it is not working, any reason why? and what should be correct syntax ?
measure= CALCULATE(DISTINCTCOUNT(Table[month]),ALL(Table,Table[month])))
Solved! Go to Solution.
@Anonymous
You set a filter on Date column so use one of these:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
HI @Anonymous
Try this:
measure= CALCULATE(DISTINCTCOUNT(Table[month]),ALL(Table[month]))
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hell @Vahid this is what I mentioned in 2nd post (I have typo here with ")") but it doesn t work
@Anonymous
Can you share you PBIX file?
or try this if you set a filter on month and you want to ignore that:
measure =
CALCULATE ( DISTINCTCOUNT ( Table[Month] ), REMOVEFILTERS ( Table[Month] ) )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
@VahidDM got it...I was filtering on the different column than filter was set up in the report
@Anonymous
You set a filter on Date column so use one of these:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Also find it, few minutes after you 😄 kudos sent 🙂
I also tried
measure
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |