The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |