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.
Hi so this is how my work looks like. This has thousands of columns and millions of rows. I wanted to be able to get a result like this.
Can you suggest the next steps? I am new to using power bi so I am very sorry 😞
Solved! Go to Solution.
Try this steps...
1. This is my sample data with a table called "Table" (You need to replace it by your table's name)
2. Create the next measures
Total Value = SUM('Table'[Value])
Total per Row = CALCULATE([Total Value];ALLEXCEPT('Table';'Table'[C1]))
Percentage = DIVIDE([Total Value];[Total per Row])
NOTE: "C1" becomes rows in the matrix visual and "C2" becomes columns.
3. This is how the result look like...
I hope this helps
Regards
BILASolution
Sir @BILASolution
I was able to figure things out! Thank you again for this! You really saved me today!
Try this steps...
1. This is my sample data with a table called "Table" (You need to replace it by your table's name)
2. Create the next measures
Total Value = SUM('Table'[Value])
Total per Row = CALCULATE([Total Value];ALLEXCEPT('Table';'Table'[C1]))
Percentage = DIVIDE([Total Value];[Total per Row])
NOTE: "C1" becomes rows in the matrix visual and "C2" becomes columns.
3. This is how the result look like...
I hope this helps
Regards
BILASolution
It says 'error' with the second script 😞
Total per Row = CALCULATE([Total Value];ALLEXCEPT('Table';'Table'[C1]))
Ok
Hi Sir! @BILASolution 😞
I did what you instructed me to do. But it wont show. You can look at the photo for reference.
Currently trying to figure it out using your instructions. Thank you very much sir!!! 🙂
Though I have to clarify, what does it mean with 'First' and 'Last' in the value field? Does that divides my data?