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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I want to creat a new Measure for a table which should show the total retention in the total row of the table. Can someone help me?
In this layout the new measure should be add next to retention and show the total retention that the customer has.
https://drive.google.com/file/d/1k10VsQ2r3H_-L-3T2k0An9NajyoS0V0z/view?usp=sharing
Hi @Anonymous ,
You could try the following measure:
Retention =
VAR a =
IF (
[Retention condition 1] >= 1
|| [Retention Condition 2] >= 1
|| [Retention Condition 3] >= 1,
1,
0
)
VAR b =
COUNTX ( VALUES ( dCalendar[YEAR] ), a )
RETURN
IF ( ISINSCOPE ( dCalendar[YEAR] ), a, b )
Please try this expression, substituting your actual table and column names
NewMeasure = SUMX(VALUES('Date'[Year]), [Retention])
This should give you the correct result in both your rows and total.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
I use this function