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've looked this one up and know it will be some sort of divide function, but I am having trouble getting a measure to fit in when writing it. Below I would need each instance of the row labels in the Bridge Column divided by the total actuals (2.1) in a percentage. Once again, I assume this is easier than it appears, but I cannot get the formula to work for me. Thanks!
Solved! Go to Solution.
@Anonymous , Try using below DAX
Percentage of Total =
DIVIDE(
SUM('YourTable'[Bridge Column]),
CALCULATE(SUM('YourTable'[Bridge Column]), ALL('YourTable'))
) * 100
Proud to be a Super User! |
|
@Anonymous , Try using below DAX
Percentage of Total =
DIVIDE(
SUM('YourTable'[Bridge Column]),
CALCULATE(SUM('YourTable'[Bridge Column]), ALL('YourTable'))
) * 100
Proud to be a Super User! |
|
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |