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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Gross Margin Column For Customer without Creating New Table

Hello,

 

I am looking to create a column that has the total gross margin for the customer on each row. This is transactional data, so the customers are not unique in the columns. How I would typically do this is create a new table, summarize the current one with Customer, sum of sales, and sum of cost. Create a new column for customer margin, create a relationship with the original data, and create a new column in the original data using the related function. 

 

This works, but it would be nice not having to create a new table for any time I need to do this. I'm assuming CALCULATE and ALL will be used.

 

Thanks for any help.

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@Anonymous

 

Here's the COLUMN formula that should do it

GM % COLUMN =
DIVIDE (
    CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) )
        - CALCULATE ( SUM ( 'Table'[Cost] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
    CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
    0
)

Hope this helps! Smiley Happy

 

View solution in original post

4 REPLIES 4
Sean
Community Champion
Community Champion

Well the process should be pretty similar except the way you created the columns in the new Table using SUMMARIZE

 

Now create Measures instead

 

Measure to Sum the Sales

Measure to Sum the Costs

Measure for Profit = Measure to Sum the Sales - Measure to Sum the Costs

 

Create a Table Visual - place Customer in the Rows and the Measures in the Values

 

If you encounter problems come back here and ask?

 

I think you'll only need CALCULATE and ALL, ALLSELECTED, ALLEXCEPT if you are doing %

 

Again your question was pretty general so without any further specifics that's my 2 cents worth Smiley Happy

Anonymous
Not applicable

@Sean

 

Thanks for the response. I am wanting to actually have these as columns in the values, not just a visual. ie getting the last column to calculate in the values tab:

 

CustomerItemSalesCostCustomer GM
A1805050.00%
A21004050.00%
B1755045.95%
B21105045.95%

 

Sean
Community Champion
Community Champion

@Anonymous

 

Here's the COLUMN formula that should do it

GM % COLUMN =
DIVIDE (
    CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) )
        - CALCULATE ( SUM ( 'Table'[Cost] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
    CALCULATE ( SUM ( 'Table'[Sales] ), ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
    0
)

Hope this helps! Smiley Happy

 

Anonymous
Not applicable

@Sean

Just what I wanted. Thanks!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 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.