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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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