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 have a set of data that has a list of contracts with the planned amounts and actual amounts by product, like this:
| Contract | Product | Planned | Actual |
| 1 | 1 | 3 | 1 |
| 1 | 2 | 3 | 2 |
| 1 | 3 | 10 | 10 |
| 2 | 2 | 10 | 0 |
| 2 | 4 | 1 | 1 |
| 3 | 1 | 10 | 10 |
| 3 | 3 | 10 | 9 |
| 3 | 5 | 10 | 8 |
And I need to summarise it at contract level with the actual %, like this:
| Contract | Planned | Actual | Actual % |
| 1 | 16 | 13 | 81% |
| 2 | 11 | 1 | 9% |
| 3 | 30 | 27 | 90% |
No matter what I do it doesn't do what I need, it always seems to just give me a % of the total or return null values.
Any help is greatly appreciated.
Thanks,
Kristian
Solved! Go to Solution.
Hi @Kr1s ,
Consider the following Input data:
Now create another table visual as follows by setting Summarisation on Planned and Actual columns as shown below:
Then create a measure for calculating the proportin percentage and set it's format to Percentage as shown below:
Now move this calculated measure to your table visual:
You will get your expected result.
Thanks,
Pragati
Hi @Kr1s ,
Consider the following Input data:
Now create another table visual as follows by setting Summarisation on Planned and Actual columns as shown below:
Then create a measure for calculating the proportin percentage and set it's format to Percentage as shown below:
Now move this calculated measure to your table visual:
You will get your expected result.
Thanks,
Pragati
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 |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 33 | |
| 31 | |
| 29 |