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
ashmitp869
Post Partisan
Post Partisan

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors