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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
PrathameshM
Regular Visitor

Need to calculate dax in which Total sum of Month should be constant for all the days.

I need to create a measure to calculate all month's data. 

E.g. Need to create logic based on the measure column 

 

MonthDaysSalesMeasure
Jan11040
Jan22040
Jan31040
Feb11060
Feb22060
Feb33060

 

2 ACCEPTED SOLUTIONS
mark_endicott
Super User
Super User

@PrathameshM - You can use the DAX Measure below:

 

VAR selected_month =
    SELECTEDVALUE ( 'Table'[Month] )
RETURN
    CALCULATE (
        SUM ( 'Table'[Sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Month] = selected_month )
    )

 

If this works, please mark it as the solution.

View solution in original post

Anonymous
Not applicable

Hi @PrathameshM ,

 

Your solution is great, @mark_endicott . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.

 

So easy!

 

Please try:

Measure = CALCULATE(
     SUM('Table'[Sales]),
     ALLEXCEPT('Table','Table'[Month])
)

 

The page effect is as shown below:

vhuijieymsft_0-1716519998070.png

 

pbix file is attached.

 

If you have any further questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

View solution in original post

3 REPLIES 3
PrathameshM
Regular Visitor

What if we want to calculate the YTD based on the financial year?

 

 

Anonymous
Not applicable

Hi @PrathameshM ,

 

Your solution is great, @mark_endicott . It worked like a charm! Here I have another idea in mind, and I would like to share it for reference.

 

So easy!

 

Please try:

Measure = CALCULATE(
     SUM('Table'[Sales]),
     ALLEXCEPT('Table','Table'[Month])
)

 

The page effect is as shown below:

vhuijieymsft_0-1716519998070.png

 

pbix file is attached.

 

If you have any further questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

mark_endicott
Super User
Super User

@PrathameshM - You can use the DAX Measure below:

 

VAR selected_month =
    SELECTEDVALUE ( 'Table'[Month] )
RETURN
    CALCULATE (
        SUM ( 'Table'[Sales] ),
        FILTER ( ALL ( 'Table' ), 'Table'[Month] = selected_month )
    )

 

If this works, please mark it as the solution.

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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