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! Learn more
when i try to create for cumulative, it gonna sum the value for the previous period too, how do i solve this issue ?
Thank you in advance for yr help 😄
Hi, @Anonymous
try:
Cumulative Claim Count =
CALCULATE (
COUNT ( Claim[Reg.date] ),
FILTER (
ALL ( Claim ),
Claim[Reg.date] <= MAX ( Claim[Reg.date] )
)
)
similar thread: How to Calculate Cumulative Values with DAX - Microsoft Fabric Community
Proud to be a Super User!
Hi @rubayatyasmin , i have applied this but maybe due to complexity in my data, i can't solve it. but i have found another way, which is by clicking "New Quick Measure", where it gives me a lot of option to calculate (sum, average, product etc.) by rearrange the data and field. Thank you for your reply 😄
Claim Count =
var a= max([claim count])
Return
CALCULATE(COUNT(Claim[Reg.date]), filter(all(YourTablename),[claim count]=a)Hi Try the abo ve dax
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.