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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Aleph18
Frequent Visitor

Display table with all possible combination of columns values

Hi,

 

I have a table of multiple columns that I will like to display showing all possible combinations of those values. Does anyone has an easy solution? Below a simple example of what I am trying to resolve. Thank you.

Capture.PNG

 

2 ACCEPTED SOLUTIONS
AlB
Community Champion
Community Champion

Hi @Aleph18 

Create a new table, where Table1 is the original table you show on the left:

NewTable =
VAR AuxTable_ =
    CROSSJOIN ( DISTINCT ( Table1[Product] ); DISTINCT ( Table1[Type] ) )
RETURN
    ADDCOLUMNS (
        AuxTable_;
        "Quantity"; LOOKUPVALUE (
            Table1[Quantity];
            Table1[Product]; [Product];
            Table1[Type]; [Type]
        )
    )

View solution in original post

Anonymous
Not applicable

You can use this DAX, though I always prefer to do this type of thing in Power Query:

Table 2 = 
ADDCOLUMNS(
CROSSJOIN( 
    SELECTCOLUMNS('Table', "Type",'Table'[Type]),
    SELECTCOLUMNS('Table',"Product",'Table'[Product]
    )
),
"Quantity", CALCULATE( SUM( 'Table'[Qty])))

Crossjoin Example.png

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

You can use this DAX, though I always prefer to do this type of thing in Power Query:

Table 2 = 
ADDCOLUMNS(
CROSSJOIN( 
    SELECTCOLUMNS('Table', "Type",'Table'[Type]),
    SELECTCOLUMNS('Table',"Product",'Table'[Product]
    )
),
"Quantity", CALCULATE( SUM( 'Table'[Qty])))

Crossjoin Example.png

AlB
Community Champion
Community Champion

Hi @Aleph18 

Create a new table, where Table1 is the original table you show on the left:

NewTable =
VAR AuxTable_ =
    CROSSJOIN ( DISTINCT ( Table1[Product] ); DISTINCT ( Table1[Type] ) )
RETURN
    ADDCOLUMNS (
        AuxTable_;
        "Quantity"; LOOKUPVALUE (
            Table1[Quantity];
            Table1[Product]; [Product];
            Table1[Type]; [Type]
        )
    )

Helpful resources

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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