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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
NikkiG12
Frequent Visitor

Budget + Actual Totals Not Summing Right

I have three data tables: Budget, YTD, Calendar. I've made a relationship between budget and calendar by year, and same relationship from calendar and YTD by year. 

I want to create a column chart where each month is summed and it changes based on a year splicer. 

I've tried many different ways but I can't seem to get the months to sum with their respective amounts, each month just gives me the annual total. Here's my last dax, its the same for YTD"

 

Total_Budget = CALCULATE(SUM('Budget'[Budget]), ALLEXCEPT('CalendarTable', 'CalendarTable'[Year], CalendarTable[Month_Name]))

What am I doing wrong?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @NikkiG12 ,

I create a table as you mentioned.

vyilongmsft_0-1710924458231.png

vyilongmsft_1-1710924582771.png

It seems like the issue might be with the ALLEXCEPT function in your DAX formula. ALLEXCEPT retains all filters for the specified columns, but it removes filters from all other columns in the table. If you are getting the annual total for each month, it’s likely because the filter on the months is being removed, and thus the calculation is summing over the entire year.

I think you can use FILTER function to keep the context of the current month when calculating the total. 

Here is the adjusted DAX code.

 

 

Total_Budget = 
CALCULATE(
    SUM('Budget'[Budget]), 
    FILTER(
        ALL('CalendarTable'[Month_Name]), 
        'CalendarTable'[Month_Name] = MAX('CalendarTable'[Year])
    )
)

 

vyilongmsft_2-1710924678565.png

 

 

 

Best Regards

Yilong Zhou

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @NikkiG12 ,

I create a table as you mentioned.

vyilongmsft_0-1710924458231.png

vyilongmsft_1-1710924582771.png

It seems like the issue might be with the ALLEXCEPT function in your DAX formula. ALLEXCEPT retains all filters for the specified columns, but it removes filters from all other columns in the table. If you are getting the annual total for each month, it’s likely because the filter on the months is being removed, and thus the calculation is summing over the entire year.

I think you can use FILTER function to keep the context of the current month when calculating the total. 

Here is the adjusted DAX code.

 

 

Total_Budget = 
CALCULATE(
    SUM('Budget'[Budget]), 
    FILTER(
        ALL('CalendarTable'[Month_Name]), 
        'CalendarTable'[Month_Name] = MAX('CalendarTable'[Year])
    )
)

 

vyilongmsft_2-1710924678565.png

 

 

 

Best Regards

Yilong Zhou

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

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.