The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I need help with getting Sub_Vol Column into subgroup
For example : 0-50,000, 50,001-150,000, 150,001-250,000
So I could build a visual like this:
Thanks for the help!
Solved! Go to Solution.
@fbostan1 , Create columns using Switch
Amount Bucket = Switch( True() ,
[Amount] <50000, " 0 -50000",
[Amount] <100000, " 50000-100000",
//Add others
)
Same way you can create for Age
Either have space before bucket name to sort to create another column with same logic. To be used as sort column
Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c
Hi,
I'd like to try. Share the download link of the PBI file. Also, share the download link of an MS Excel workbook, showing the exact result. If i can write the DAX measure for it, I should be able to tally my answer with yours that you will share in the Excel file.
@fbostan1 , Create columns using Switch
Amount Bucket = Switch( True() ,
[Amount] <50000, " 0 -50000",
[Amount] <100000, " 50000-100000",
//Add others
)
Same way you can create for Age
Either have space before bucket name to sort to create another column with same logic. To be used as sort column
Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
71 | |
52 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |