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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
I tried this
Solved! Go to Solution.
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!!
Proud to be a 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!!
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |