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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ZKailar
Frequent Visitor

Duplicating date for each distinct value

Hi All!

 Im looking for a way to create a new table that duplicates the date for each distinct value in another table/column. I currently have a date table and another table that is pulling the distinct values. This is what it should look like:

DATE         Color

1/1/2019   Blue

1/1/2019   Green

1/1/2019   Black

1/2/2019   Blue

1/2/2019   Green

1/2/2019   Black

1/3/2019   Blue

1/3/2019   Green

1/3/2019   Black

 

 Thanks in advance for any help!

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @ZKailar 

You should show the original tables or explain better how the new table is built. It is not completely clear. Try creating a calculated table like this:

NewTable =
CROSSJOIN ( 'Date'[Date], OtherTable[Color] )

 

 

 

View solution in original post

2 REPLIES 2
AlB
Community Champion
Community Champion

Hi @ZKailar 

You should show the original tables or explain better how the new table is built. It is not completely clear. Try creating a calculated table like this:

NewTable =
CROSSJOIN ( 'Date'[Date], OtherTable[Color] )

 

 

 

ZKailar
Frequent Visitor

That worked well, i have a couple things to change but that will work! Thanks for the help, and ill keep that in mind for future posts. Thanks again!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors