Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi all,
I have been ask to create a Pareto chart for incoming invoices.
They want to see the amounts in categories:
0-50,50-100,100-250,250-500 ect.
I have a table:
Invoice number - Amount
1 - 123
2 - 10
Ect.
I have made colums 0-50,50-100, but the chart only accept 1 value colum.
How could I do this?
I'm a new power Bi user, still looking to get to understand how it all works...
Solved! Go to Solution.
@MRR , Have create a column like this
Switch ( True (),
[Amount] <= 50 ," 0 -50",
[Amount] <= 100 ," 50 -100",
// Add other
"Others" //default value
)
If the amount is the measure then you need dynamic segmentation
refer: https://youtu.be/CuczXPj0N-k
@MRR , Have create a column like this
Switch ( True (),
[Amount] <= 50 ," 0 -50",
[Amount] <= 100 ," 50 -100",
// Add other
"Others" //default value
)
If the amount is the measure then you need dynamic segmentation
refer: https://youtu.be/CuczXPj0N-k
Thank you!!
That did it!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
44 | |
37 | |
25 | |
24 | |
23 |