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
nleuck
Post Patron
Post Patron

DAX Formula

Hello All,

 

I'm currently trying to recreate a formula in Power BI that is being used in Excel for a report. On the image below I've place an M above the columns of my table that represent Measures I created. Sales Amount is a column that has a Default Summarization of Sum. I need a formula that looks like this:

 

(total of Prev Period Gross Margin $, subtract Prev Period Gross Margin $, add Gross Margin $)

 divide--------------------------------------------------------------------------------------------------

(total of Prev Period Sales Amount, subtract Prev Period Sales Amount, add Sales Amount)

 

(275,446 - 4915 + 300) / (1,138,962 - 50,060 + 2,409) -----> 270,831 / 1,061,311 ------> .24817 ------> 24.82%

 

Any help would be greatly appreciated!!!

 

Thanks,

 

power screen shot.png

5 REPLIES 5
v-yuta-msft
Community Support
Community Support

@nleuck,

 

Create a measure and try DAX formula like pattern below:

 

Measure =
CALCULATE ( SUM ( Table[Prev Period Gross Margin] ), ALL ( Table ) )
    - MAX ( Table[Prev Period Gross Margin] )
    + MAX ( Table[Gross Margin] )
        / CALCULATE ( SUM ( Table[Prev Period Sales Amount] ), ALL ( Table ) )
    - MAX ( Table[Prev Period Sales Amount] )
    + MAX ( Table[Sales Amount] )

Regards,

Jimmy Tao

 

@v-yuta-msft

 

You can't SUM on measure. Thanks though.

@nleuck,

 

Have you solved your issue by now? If you have, could you please help mark the correct answer to finish the thread? Your contribution will be much appreciated.

 

Regards,

Jimmy Tao

@v-yuta-msft

 

There wasn't a correct answer. It looks like what I'm trying to do can not be done in Power BI.

@nleuck,

 

Could you share the original table for further test?

 

Community Support Team _ Jimmy Tao

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

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.