Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jeremiels
Frequent Visitor

Dynamic Column calculation

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

1 ACCEPTED SOLUTION
v-caliao-msft
Microsoft Employee
Microsoft Employee

@jeremiels,

 

Please use the DAX below to achieve your requirement.

RegionTurnover = CALCULATE(SUM(Table1[Turnover]),ALLEXCEPT(Table1,Table1[Region]))

Capture.PNG

 

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

View solution in original post

1 REPLY 1
v-caliao-msft
Microsoft Employee
Microsoft Employee

@jeremiels,

 

Please use the DAX below to achieve your requirement.

RegionTurnover = CALCULATE(SUM(Table1[Turnover]),ALLEXCEPT(Table1,Table1[Region]))

Capture.PNG

 

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.