Forum Discussion
rolf1994
Helper II
7 years agoCreate a table with dates from a table with only a startdate and enddate
Hi, I have the following table: ID StartDate EndDate T123 3-8-2018 7-8-2018 I want to create the following table based on my existing table: ID Date ...
PattemManohar
Community Champion
7 years agorolf1994 Please try this using "New Table" option
GenerateDatesOut = SELECTCOLUMNS(CROSSJOIN(CALENDAR(MIN(GenerateDates[StartDate]),MIN(GenerateDates[EndDate])),GenerateDates),"Date",[Date],"ID",[ID])