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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
BrianNeedsHelp
Resolver I
Resolver I

Sum Certain Rows but Keep in same Column

I have a table like this:  

ProductTotals

Data1

20
Data210
Product150
Product2100

How could I add the Data1 and Data2 rows together and keep it in the same Product column so it's like this:

ProductTotals
Data 30
Product150
Product2100
1 ACCEPTED SOLUTION
techies
Super User
Super User

Hi @BrianNeedsHelp  an alternative approach is to create calculated column like this

 

Product Group =
SWITCH(
    TRUE(),
    'ProductsTable'[Product] IN {"Data1", "Data2"}, "Data",
    'ProductsTable'[Product]
)
 
 
― Power BI | Microsoft Fabric | PL-300 | DP-600 | Blog: medium.com/@cseprs_54978

View solution in original post

2 REPLIES 2
techies
Super User
Super User

Hi @BrianNeedsHelp  an alternative approach is to create calculated column like this

 

Product Group =
SWITCH(
    TRUE(),
    'ProductsTable'[Product] IN {"Data1", "Data2"}, "Data",
    'ProductsTable'[Product]
)
 
 
― Power BI | Microsoft Fabric | PL-300 | DP-600 | Blog: medium.com/@cseprs_54978
FBergamaschi
Solution Sage
Solution Sage

Create a calculated column

 

Category = IF ( Product[Product] IN {"Data1", "Data2}, "Data", Product[Product] )

 

Then group this column

 

If this helped, please consider giving kudos and mark as a solution

@me in replies or I'll lose your thread

Want to check your DAX skills? Answer my biweekly DAX challenges on the kubisco Linkedin page

Consider voting this Power BI idea

Francesco Bergamaschi

MBA, M.Eng, M.Econ, Professor of BI

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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