Forum Discussion
BrianNeedsHelp
1 year agoResolver I
Sum Certain Rows but Keep in same Column
I have a table like this: Product Totals Data1 20 Data2 10 Product1 50 Product2 100 How could I add the Data1 and Data2 rows together and keep it in the same Product colu...
- 1 year ago
Hi BrianNeedsHelp an alternative approach is to create calculated column like this
Product Group =SWITCH(TRUE(),'ProductsTable'[Product] IN {"Data1", "Data2"}, "Data",'ProductsTable'[Product])
techies
1 year agoSuper 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]
)