Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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...
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 33 | |
| 32 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 66 | |
| 44 | |
| 27 | |
| 24 |