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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How to create a new table with duplicate dates and values from an existing table

I have these two tables - with no natural connection:

Customers.pngDate.png

 

And I want to create this table for all the dates with DAX, please help!

Goal.png

1 ACCEPTED SOLUTION
PabloDeheza
Solution Sage
Solution Sage

Hi @Anonymous!
Try the following:

New Table =
VAR _Table1 =
    VALUES( 'Table 1'[DateShort] )
VAR _Table2 =
    SUMMARIZE(
        'Table 2',
        'Table 2'[Category],
        'Table 2'[Category 2]
    )
RETURN
    CROSSJOIN( _Table1, _Table2 )

 Let me know if that helps!

View solution in original post

2 REPLIES 2
PabloDeheza
Solution Sage
Solution Sage

Hi @Anonymous!
Try the following:

New Table =
VAR _Table1 =
    VALUES( 'Table 1'[DateShort] )
VAR _Table2 =
    SUMMARIZE(
        'Table 2',
        'Table 2'[Category],
        'Table 2'[Category 2]
    )
RETURN
    CROSSJOIN( _Table1, _Table2 )

 Let me know if that helps!

Anonymous
Not applicable

Thank you so much! That was exactly what i needed 😊

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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