Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am using Pareto visual: Pareto by sio2Graphs. I have a field with numbers that I want to put into groups for the pareto. My numbers range from 0 to 10000. I want to create groups such as: 0-60, 61-75, 76-120, >120. I would then use the groups on the pareto. How do I do that?
Solved! Go to Solution.
Hi @TomSinAA ,
You can create a calculated column like this.
Range =
SWITCH(
TRUE(),
[Numbers] >=0 && [Numbers] <=60, "0-60",
[Numbers] >60 && [Numbers] <=57, "61-75",
[Numbers] >75 && [Numbers] <=120, "76-120",
">120"
)
Or you also can use "Add conditional column" feature in "Edit query".
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @TomSinAA ,
You can create a calculated column like this.
Range =
SWITCH(
TRUE(),
[Numbers] >=0 && [Numbers] <=60, "0-60",
[Numbers] >60 && [Numbers] <=57, "61-75",
[Numbers] >75 && [Numbers] <=120, "76-120",
">120"
)
Or you also can use "Add conditional column" feature in "Edit query".
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thanks
@TomSinAA , refer if segmentation can help
https://www.daxpatterns.com/dynamic-segmentation/
https://www.daxpatterns.com/static-segmentation/
https://www.poweredsolutions.co/2020/01/11/dax-vs-power-query-static-segmentation-in-power-bi-dax-po...
https://radacad.com/grouping-and-binning-step-towards-better-data-visualization
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |