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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
ketan10
Advocate III
Advocate III

DAX Help Needed: Group values by transaction id and check class

I have a Table 1 using this I need to create a Table 2 as shown in the image below. I would appreciate any help with the logic on this to be done either using DAX or maybe in Tableau.  Thank you.

Note: If a transaction id has a class 'SP' then for that transaction id replace the class 'WSP' with 'SP' and then get the sum for that transaction id.


Screenshot (55).png

 

1 ACCEPTED SOLUTION

@ketan10

 

This Column for New Revenue

 

New Revenue =
CALCULATE (
    SUM ( TableName[Revenue] ),
    ALLEXCEPT ( TableName, TableName[Transaction ID] )
)

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

HI @ketan10

 

Try this Calculated Column

 

New Class =
IF (
    CALCULATE (
        COUNTROWS ( TableName ),
        FILTER (
            ALLEXCEPT ( TableName, TableName[Transaction ID] ),
            TableName[Class] = "SP"
        )
    )
        >= 1,
    "SP",
    TableName[Class]
)

@ketan10

 

This Column for New Revenue

 

New Revenue =
CALCULATE (
    SUM ( TableName[Revenue] ),
    ALLEXCEPT ( TableName, TableName[Transaction ID] )
)

Hi @Zubair_Muhammad Thank you. This works perfect !

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.

Top Solution Authors