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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors