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.
Hello experts,
I need to create a matrix visual where I have 2 panes and along with number, I need to add a % column that will show % adding up to 100% for each pane.
I tried % of column total but it is showing % for whole column , adding 100% at bottom where as I need adding 100% for each pane.
Any idea how to do this?
Solved! Go to Solution.
@Anonymous
Use the following measure and modify as per your model:
Sales % =
DIVIDE(
SUM(financials[ Sales]),
CALCULATE(
SUM(financials[ Sales]),
ALLSELECTED(financials[Segment])
)
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Use the following measure and modify as per your model:
Sales % =
DIVIDE(
SUM(financials[ Sales]),
CALCULATE(
SUM(financials[ Sales]),
ALLSELECTED(financials[Segment])
)
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Awesome . It worked, thanks a lot
@Anonymous
What do mean by pane here, can you share a screenshot please?
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
By pane I meant, I have 2 categories with 10 subcategories and they both are going to Rows . Now for category 1 with all 10 subcategories values my % total should add up to 100% , also for category 2 it should add up to 100%.
Each pane is 1 category with 10 subcategories
Did you try to use percent of column total?
As I said, it did not work as it takes the whole column as 100%, not each pane.
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
48 | |
47 |