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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.