Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I've tried a bunch of different options but none seem to work... The two related measures are below.
Appreciate any ideas.
Pool Origination = CALCULATE (
Solved! Go to Solution.
@MattWoodley , based on what I got
if(max('Term Run'[Term Run]) > calculate(MAx('Term Run'[Term Run]), allselected()) ,blank(), max('Term Run'[Term Run]))
Hi @MattWoodley ,
Please try the measure.
Pool Origination =
VAR _sum =
CALCULATE (
SUM ( 'Unique Account Numbers'[Amount Financed] ),
ALLSELECTED ( 'Term Run'[Term Run] )
)
RETURN
IF ( MAX ( 'Term Run'[Term Run] ) >= [Max Term 1], _sum )
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@MattWoodley , based on what I got
if(max('Term Run'[Term Run]) > calculate(MAx('Term Run'[Term Run]), allselected()) ,blank(), max('Term Run'[Term Run]))
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!