Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join 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.

Reply
KathrynAnderson
Regular Visitor

Use SWITCH Function without aggregating the field

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_CodeSales_AmountNew_Measure
ABC$100Painting
BCD$500Painting
CCD$200Painting
EEC$300Maintenance
BDS$700

Maintenace

 

1 ACCEPTED SOLUTION
mwegener
Most Valuable Professional
Most Valuable Professional

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.

Did I answer 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


View solution in original post

2 REPLIES 2
mwegener
Most Valuable Professional
Most Valuable Professional

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.

Did I answer 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


mwegener
Most Valuable Professional
Most Valuable Professional

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.

Did I answer 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


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.