Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
The following expression give the Total salary of all month or only May ? Please help me.....
CALCULATE([TotalSalary],FILTER(ALL(FactSalary[Month]), FactSalary[Month]="May"))
Solved! Go to Solution.
May only
Hello arifulice
I'm not an expert on DAX but I found a good explanation here:
https://community.powerbi.com/t5/Desktop/Filter-and-Allexcept/td-p/76403
the way I understand:
CALCULATE([TotalSalary],FILTER(ALL(FactSalary[Month]), FactSalary[Month]="May"))
the filter iterates only the values of the [Month] column (you will see May only). It is the same as:
CALCULATE([TotalSalary],FactSalary[Month]="May"))
in order to remove all the filters from other columns, you change to:
CALCULATE([TotalSalary],FILTER(ALL(FactSalary), FactSalary[Month]="May"))
where the only difference is that the filter iterates the entire FactSalary table and not only the values of the Month column (you see all months)
May only
Hello, pawel1
Although I have understand the problem but further you briefly describe the solution .(Why only May will be the answer Although the ALL(FactSalary[Month]) remaining?
Hello arifulice
I'm not an expert on DAX but I found a good explanation here:
https://community.powerbi.com/t5/Desktop/Filter-and-Allexcept/td-p/76403
the way I understand:
CALCULATE([TotalSalary],FILTER(ALL(FactSalary[Month]), FactSalary[Month]="May"))
the filter iterates only the values of the [Month] column (you will see May only). It is the same as:
CALCULATE([TotalSalary],FactSalary[Month]="May"))
in order to remove all the filters from other columns, you change to:
CALCULATE([TotalSalary],FILTER(ALL(FactSalary), FactSalary[Month]="May"))
where the only difference is that the filter iterates the entire FactSalary table and not only the values of the Month column (you see all months)
Hello Pawel1
Thank you so much. I have understand the solution, Thats you described in your post...
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 40 | |
| 39 |