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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

How to stop Power BI combining months from separate years

Hello,

 

I have sales data from beginning of 2018 thru June 2019. I am trying to show the % of total sales dollars by order type for each month. Using the DAX shown in the below picture, I was able to get it to work for Jul 18 thru Dec 18. However, for any months that I have data for in both 2018 and 2019, the formula is taking the month from 2018 and dividing it by the combined 2018 and 2019 month. For example: For Jan 2018, the formula takes the dollar amount from Jan 2018 and divides it by Jan 2018 + Jan 2019. I need it to only divide by Jan 2018. 

 

Any solutions would be appreciated.

 

Thanks! 

 

InkedCapture_LI.jpg

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

If you write a measure for Order Total:

Order Total = SUM ( 'Order Details'[Total] )

You can then write the % of total measure as:

Pct of type =
DIVIDE (
    [Order Total],
    CALCULATE ( [Order Total], ALL ( 'Order Details'[Order Type 2] ) )
)

This should respect the moth year properly.

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

If you write a measure for Order Total:

Order Total = SUM ( 'Order Details'[Total] )

You can then write the % of total measure as:

Pct of type =
DIVIDE (
    [Order Total],
    CALCULATE ( [Order Total], ALL ( 'Order Details'[Order Type 2] ) )
)

This should respect the moth year properly.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (730)