Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi, I try to explain my problem.
I have a matrix table, where the value are calculated in a new measure.
This measure is an amount, but I transform the value in percentage (on the row total). The result is that at the end of each row I will have always 100%.
Below is the link to make you understand how the measure is calculated.
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Matrix-table-with-sum/m-p/1521299#M29660
The focus is that for ech of my cluster (secured, unsecured) I can choice "shows the value as a percentage of the row total". So, at the end of the row I have 100%
If I want to trasform this matrix table in a Line Graph, because I would like to show the trend of the lines, up to 100%. This shows how long it takes for each of the clusters to make sales (when both clusters reach 100%). But in this case I don't have ""shows the value as a percentage of the row total" but only "shows the value as a percentage of the total".
So, I can only show the value as a percentage of the grand total and not the percentage of the row total.
The line chart will therefore not tend to 100% for each cluster.
The trend of each cluster is based on the total. So one cluster will reach 85% and the other 15%. Instead both, as mentioned, should reach 100%
Solved! Go to Solution.
Hi @Carlo1975
Create a new measure based on the one you have. Should be something like:
New Measure =
DIVIDE (
[CurrentMeasure],
CALCULATE ( [CurrentMeasure], ALL ( Table1[Quarter_Contabile_Number] ) )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Carlo1975
Create a new measure based on the one you have. Should be something like:
New Measure =
DIVIDE (
[CurrentMeasure],
CALCULATE ( [CurrentMeasure], ALL ( Table1[Quarter_Contabile_Number] ) )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |