Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to create a measure in Which i can divide the total value by the sum of all values. For example for
00--05 I want to divide 75518/ by the sum of 00-05 through 121++
So for the first one of 00--05 it should be 9%
Solved! Go to Solution.
Hi, @ligalbert
You need to select and unpivot columns as below in 'TransformData' and click 'Close&Apply'.
Then you can apply these new fields into the matrix as follows:
You can also create a new measure and apply it to the 'Values' of Matrix
Measure = SUM('Table'[Value])/CALCULATE(SUM('Table'[Value]),ALL('Table'[Attribute]))
Best Regards,
Community Support Team _ Eason
Hi, @ligalbert
You need to select and unpivot columns as below in 'TransformData' and click 'Close&Apply'.
Then you can apply these new fields into the matrix as follows:
You can also create a new measure and apply it to the 'Values' of Matrix
Measure = SUM('Table'[Value])/CALCULATE(SUM('Table'[Value]),ALL('Table'[Attribute]))
Best Regards,
Community Support Team _ Eason
Try something like the following formula
% Share =
VAR Volume =
COUNT('Table'[CUSTOMER_ID)
VAR AllVolume =
CALCULATE ( COUNT('Table'[CUSTOMER_ID]),ALL('Table') )
RETURN
DIVIDE ( Volume, AllVolume )
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
99 | |
92 | |
50 | |
47 | |
46 |