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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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