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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
carlenb
Advocate II
Advocate II

DAX - How can I divide each sale with total revenue? See model

Hi,

 

I'm trying to create a measure that will calculate divide sales by tota supplier revenue. This will give me a market share we have on that supplier for each here. See my schema below. 

 

carlenb_0-1695794295290.png

 

I also have the following graph where I've highlighted the end resultat to add a second line for % market share for eachsupplier. I seems like such an easy measure but I'm still a learner in this. 

carlenb_2-1695794564111.png

 

Any help on this would be amazing! 

 

 

1 ACCEPTED SOLUTION
JoeBarry
Solution Sage
Solution Sage

Hi @carlenb 

 

The data model is set up incorrectly

 

The 3 tables for supplier revenue, do they contain dates and have the same column names and format? In Power Query, I would append all these tables together into one table. I would append as new and untick the enable load on the 3 tables and load the new table into the report. Re create the relationship, but this time instead of having both directions,create a one to many from the Supplier Table to the New Table and Sales 20-22 table.

 

The same for the Calendar one to many to both other tables on the date columns. 

 

You can then create this measure to get the % Marketshare

 

% Marketshare =

VAR _SupRev = SUM(SupplierRevenue[Revenue])
VAR _SalesRev = SUM('Sales 2020-2022'[Total Value])

RETURN
DIVIDE(_SupRev, _SalesRev)

 

Convert to %

 

Use the Columns from the Date and Supplier tables in any visual or slicer and then the measure

 

Thanks

Joe

 

If this post helps, then please Accept it as the solution

 

 

View solution in original post

2 REPLIES 2
JoeBarry
Solution Sage
Solution Sage

Hi @carlenb 

 

The data model is set up incorrectly

 

The 3 tables for supplier revenue, do they contain dates and have the same column names and format? In Power Query, I would append all these tables together into one table. I would append as new and untick the enable load on the 3 tables and load the new table into the report. Re create the relationship, but this time instead of having both directions,create a one to many from the Supplier Table to the New Table and Sales 20-22 table.

 

The same for the Calendar one to many to both other tables on the date columns. 

 

You can then create this measure to get the % Marketshare

 

% Marketshare =

VAR _SupRev = SUM(SupplierRevenue[Revenue])
VAR _SalesRev = SUM('Sales 2020-2022'[Total Value])

RETURN
DIVIDE(_SupRev, _SalesRev)

 

Convert to %

 

Use the Columns from the Date and Supplier tables in any visual or slicer and then the measure

 

Thanks

Joe

 

If this post helps, then please Accept it as the solution

 

 

Thanks @JoeBarry - I got it to work! Thanks for a great explanation and suggestion on the model setup! 🙂 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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