Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 169 | |
| 109 | |
| 91 | |
| 55 | |
| 44 |