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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ashmitp869
Responsive Resident
Responsive Resident

Need help in dax calculation - Total value should reflect when specific condition is true

Hi there,

I have use Table Visual in Power BI. Can anyone help me to get the Total value of Earned Cost when isterminal is true 

The other rows should be calculating and showing

 
 
ashmitp869_1-1717566747781.png

 

I tried this 

Earned Cost =
IF(
    HASONEVALUE(Projects[Project ID]),
    CALCULATE(SUM(CurrentBudget[CBEarnedTotalCostToDate]),CostItem[Is_terminal]=true),
    CALCULATE(SUM(CurrentBudget[CBEarnedTotalCostToDate]))
)
 
 
But the output is excluding the isTerminal = False. I want the full data set but the total should be showing when isterminal is True
 
ashmitp869_2-1717566922426.png

 

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @ashmitp869  - Create a new measure will calculate the sum based on whether it is in the row context (for individual rows) or in the total context.

you want to calculate the sum of CBEarnedTotalCostToDate for the rows where Is_terminal is True only for the total row, while showing all rows in the table visual.

 

Earned Cost =
IF(
ISINSCOPE(Projects[Project ID]),
SUM(CurrentBudget[CBEarnedTotalCostToDate]),
CALCULATE(SUM(CurrentBudget[CBEarnedTotalCostToDate]), CostItem[Is_terminal] = TRUE)
)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @ashmitp869  - Create a new measure will calculate the sum based on whether it is in the row context (for individual rows) or in the total context.

you want to calculate the sum of CBEarnedTotalCostToDate for the rows where Is_terminal is True only for the total row, while showing all rows in the table visual.

 

Earned Cost =
IF(
ISINSCOPE(Projects[Project ID]),
SUM(CurrentBudget[CBEarnedTotalCostToDate]),
CALCULATE(SUM(CurrentBudget[CBEarnedTotalCostToDate]), CostItem[Is_terminal] = TRUE)
)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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.

Top Solution Authors