Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I want to add a column in my database who sums the total revenue for each line of business.
Region Entity Turnover
A 1 10K
A 2 5K
B 3 15K
B 4 5K
So I want to create a column (region turnover) whose result should be:
Region Entity Turnover Region turnover
A 1 10K 15K
A 2 5K 15K
B 3 15K 20K
B 4 5K 20K
However I don't know how to determine a dynamic filter per region so the result of my formula is
Region Entity Turnover Region turnover
A 1 10K 35K
A 2 5K 35K
B 3 15K 35K
B 4 5K 35K
Can you help me?
Many thanks,
Jérémie
Solved! Go to Solution.
Please use the DAX below to achieve your requirement.
RegionTurnover = CALCULATE(SUM(Table1[Turnover]),ALLEXCEPT(Table1,Table1[Region]))
ALLEXCEPT removes all context filters in the table except filters that have been applied to the specified columns.
https://msdn.microsoft.com/en-us/library/ee634795.aspx
Regards,
Charlie Liao
Please use the DAX below to achieve your requirement.
RegionTurnover = CALCULATE(SUM(Table1[Turnover]),ALLEXCEPT(Table1,Table1[Region]))
ALLEXCEPT removes all context filters in the table except filters that have been applied to the specified columns.
https://msdn.microsoft.com/en-us/library/ee634795.aspx
Regards,
Charlie Liao
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 61 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 107 | |
| 39 | |
| 30 | |
| 26 |