Forum Discussion

vpatel55's avatar
vpatel55
Icon for Kudo Commander rankKudo Commander
5 years ago
Solved

Creating a new table with a cartesian product column

Hello,

 

I am trying to create a new table containing every combination of Product in within one transaction id. So if transaction 1 contained 3 different products, that would be 3 x 3 = 9 combinations. This needs to be done in DAX.

 

The input is this:

 

Transaction IdCustomerProduct
1John SmithGrapefruit
1John SmithOrange
1John SmithPineapple
2Lucy JonesMelon
2Lucy JonesJackfruit
3Amy SycamoreGrapefruit
4Daniel JohnsonOrange
5Jimmy JohnsonPineapple

 

The expected output is this, where Product 1 and Product 2 show every combination of product in that Transaction id.

 

Transaction IdCustomerProduct 1Product 2
1John SmithGrapefruitGrapefruit
1John SmithGrapefruitOrange
1John SmithGrapefruitPineapple
1John SmithOrangeGrapefruit
1John SmithOrangeOrange
1John SmithOrangePineapple
1John SmithPineappleGrapefruit
1John SmithPineappleOrange
1John SmithPineapplePineapple
2Lucy JonesMelonMelon
2Lucy JonesJackfruitMelon
2Lucy JonesMelonJackfruit
2Lucy JonesJackfruitJackfruit
3Amy SycamoreGrapefruitGrapefruit
4Daniel JohnsonOrangeOrange
5Jimmy JohnsonPineapplePineapple

 

A link to the input file is here:

 

https://www.dropbox.com/s/m4uffww780eoi71/Sample%20file.pbix?dl=0

 

A kudos for anyone with a solution. Thanks in advance.

  • vpatel55,

     

    Try this calculated table. The SELECTCOLUMNS function is necessary in order to rename the Product column, since CROSSJOIN doesn't allow two columns with the same name.

     

    Cross Join = 
    GENERATE (
        SUMMARIZE ( Data, Data[Transaction Id], Data[Customer] ),
        VAR vTransId = Data[Transaction Id]
        VAR vProduct1 =
            CALCULATETABLE ( VALUES ( Data[Product] ), Data[Transaction Id] = vTransId )
        VAR vProduct2 =
            SELECTCOLUMNS (
                CALCULATETABLE ( VALUES ( Data[Product] ), Data[Transaction Id] = vTransId ),
                "Product2", Data[Product]
            )
        RETURN
            CROSSJOIN ( vProduct1, vProduct2 )
    )

     

     

2 Replies

  • vpatel55,

     

    Try this calculated table. The SELECTCOLUMNS function is necessary in order to rename the Product column, since CROSSJOIN doesn't allow two columns with the same name.

     

    Cross Join = 
    GENERATE (
        SUMMARIZE ( Data, Data[Transaction Id], Data[Customer] ),
        VAR vTransId = Data[Transaction Id]
        VAR vProduct1 =
            CALCULATETABLE ( VALUES ( Data[Product] ), Data[Transaction Id] = vTransId )
        VAR vProduct2 =
            SELECTCOLUMNS (
                CALCULATETABLE ( VALUES ( Data[Product] ), Data[Transaction Id] = vTransId ),
                "Product2", Data[Product]
            )
        RETURN
            CROSSJOIN ( vProduct1, vProduct2 )
    )

     

     

  • vpatel55's avatar
    vpatel55
    Icon for Kudo Commander rankKudo Commander

    DataInsights , that works perfectly! I didn't think to use GENERATE. This had me stumped, so huge kudos for helping with this.