Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I need to creat a new measure that will group like products together. See the table below, where the New_Measure column is what I want to create.
I cannot create a new column because I have to use Live Connection. I've tried using the SWITCH function, but it requies an aggregate on the Product_Code, which breaks the results if the Product_Code isn't part of the visual. Does anyone know of a way to basically create a custom grouping with a Live Connection?
Product_Code | Sales_Amount | New_Measure |
ABC | $100 | Painting |
BCD | $500 | Painting |
CCD | $200 | Painting |
EEC | $300 | Maintenance |
BDS | $700 | Maintenace |
Solved! Go to Solution.
Hi @KathrynAnderson ,
try this.
New_Measure =
SWITCH (
SELECTEDVALUE ( 'Table'[Product_Code] ),
"ABC", "Painting",
"BCD", "Painting",
"BDS", "Maintenance",
"CCD", "Painting",
"EEC", "Maintenance"
)
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @KathrynAnderson ,
take a look at this.
https://docs.microsoft.com/en-us/power-bi/desktop-grouping-and-binning
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @KathrynAnderson ,
try this.
New_Measure =
SWITCH (
SELECTEDVALUE ( 'Table'[Product_Code] ),
"ABC", "Painting",
"BCD", "Painting",
"BDS", "Maintenance",
"CCD", "Painting",
"EEC", "Maintenance"
)
Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |