The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I want to create a measure that divide the sales of a category by the total sales of the same month to represent later the % of sales for each category and month in a chart, but I'm unable to find one measure that works properly. I have attached an image with the desired output in Excel.
Thank you
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
% measure: =
VAR _value =
SUM ( data[value] )
VAR _allcategory =
CALCULATE ( SUM ( data[value] ), ALL ( category[category] ) )
RETURN
DIVIDE ( _value, _allcategory )
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
% measure: =
VAR _value =
SUM ( data[value] )
VAR _allcategory =
CALCULATE ( SUM ( data[value] ), ALL ( category[category] ) )
RETURN
DIVIDE ( _value, _allcategory )
That's exactly what I needed. You've saved my life.
Thank you!
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |