Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
lhdp
Helper I
Helper I

Cumulative Month to Date from average daily values

Hi the community,

I need a relatively simple calculation: sum (or month-to-date) of average daily rainfall values ​​from different rain gauges. The calculation must be made regardless of the rain gauges(s) chosen by a slicer. I tried summarize or groupby and reach to have the calcultation for all rain gauges but I "lost" the rain gauges and I can't filter with my slicer.

 

lhdp_1-1677769697685.png

 

Thanks for help!

Laurent

1 ACCEPTED SOLUTION
YukiK
Impactful Individual
Impactful Individual

You can use the formula like this:

Sum of Daily Rainfall Avg = 
SUMX(
    VALUES( Table[Date] ),
    CALCULATE( AVERAGE( Table[Rainfall] ) ) 
)

You iterate each date to calculate the average and you sum those calculated averages.

 

Please consider giving it a thumbs up and accept as solution if this helps!

View solution in original post

2 REPLIES 2
lhdp
Helper I
Helper I

Perfect. It's ok (and simple). Thanks to you YukiK.

YukiK
Impactful Individual
Impactful Individual

You can use the formula like this:

Sum of Daily Rainfall Avg = 
SUMX(
    VALUES( Table[Date] ),
    CALCULATE( AVERAGE( Table[Rainfall] ) ) 
)

You iterate each date to calculate the average and you sum those calculated averages.

 

Please consider giving it a thumbs up and accept as solution if this helps!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors