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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
jimpatel
Post Patron
Post Patron

Summing only one end result

Hi,

 

Thanks for looking at my post.

 

Any help will be appreciated 

 

I have below table and i would like to get only one number as sum please. Currently it is summing each and every row and giving massive number. What i am expecting please is for Feb 2024 expecting result as 9 please and so on

 

3M = CALCULATE(SUM('Table1'[Colum3]),DATESINPERIOD('Calender'[Dates],MAX('Calender'[Dates]),-3,MONTH))

jimpatel_0-1713786962489.png

 

Thanks a lot

 

3 REPLIES 3
jimpatel
Post Patron
Post Patron

Thanks for your reply. 

I think i did not explain properly.

 

What i am after is 3 months of rolling average. 

In this example above for Feb 2024 = Dec 2023 + Jan 2024+Feb 2024 = 0 + 6 + 3 = 9

For Mar 2024 = JAn 2024 + Feb 2024 + Mar 2024 = 6 +3 + 7 = 16

 

Hope this make sense.

 

Really appreciate your help 🙂

 

Anonymous
Not applicable

Thanks for the reply from @lbendlin , please allow me to provide another insight:

 

Hi @jimpatel ,

 

How was outcome 9 derived? One can try to modify the formula as follows:

3M =
VAR MaxDate =
    MAX ( 'Calender'[Dates] )
RETURN
    CALCULATE (
        SUM ( 'Table1'[Colum3] ),
        FILTER ( ALL ( 'Calender' ), 'Calender'[Dates] = MaxDate )
    )

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

lbendlin
Super User
Super User

You can't use the MAX inside the CALCULATE like this.  Move the MAX out into a variable.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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