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
Hi Team,
I have a DAX measure in my report as shown below:
Did you already try to make a calculated table with a calculation on 'ops tClmsAllClmLines'[MemberID]? Then replace 'ops tClmsAllClmLines'[MemberID] with the related value of that table.
Hi, @Deepesh_V95
Based on my research, It is the measure [SL$-MinMeasure] that causes this DAX measure to render very slowly. The measure will be calculated many times during the 'Filter' iterator. I'd like to suggest you use a variable to keep the measure out of the calculation. You may modify it as below.
Paid Sum_Stop Loss =
var x = [SL$-MinMeasure]
return
CALCULATE(
SUM('ops tClmsAllClmLines'[ClaimNetPay]),
FILTER(
'ops tClmsAllClmLines',
CALCULATE(
SUM('ops tClmsAllClmLines'[ClaimNetPay]),
FILTER(
'ops tClmsAllClmLines',
'ops tClmsAllClmLines'[MemberID] = EARLIER('ops
tClmsAllClmLines'[MemberID])
)
) >= x
)
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @v-alq-msft . I tried this approach but still it is taking same amount of time to render. Is there anything else or any approach I can try out?
Thank you!
Deepesh
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.