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

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.

Reply
selimovd
Super User
Super User

Dynamic column values in DAX calculation

Hello everyone,

 

I have a table with hours of productive, unproductive work hours and the total, here as easy example:

1.png

 

In addition to the total I want to know the percentage of the productive/unproductive hours. So something like this:

2.png

 

Is it possible to solve this in one table and maybe also make the formula dynamic in DAX? Should be something like:

SUM(Total of current column) / SUM(TotalHours)

 

Thank you and best regards

 

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @selimovd 

Create measures

pro% = CALCULATE(SUM(Table1[pro]),ALL(Table1))/CALCULATE(SUM(Table1[total]),ALL(Table1))

unpro% = CALCULATE(SUM(Table1[unpro]),ALL(Table1))/CALCULATE(SUM(Table1[total]),ALL(Table1))

2.png

 

Best Regards

Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @selimovd 

Create measures

pro% = CALCULATE(SUM(Table1[pro]),ALL(Table1))/CALCULATE(SUM(Table1[total]),ALL(Table1))

unpro% = CALCULATE(SUM(Table1[unpro]),ALL(Table1))/CALCULATE(SUM(Table1[total]),ALL(Table1))

2.png

 

Best Regards

Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.