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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Igarsaba
Regular Visitor

Dates between create columns

Hi guys, i need some help

 

I have a table with Start Date and End Date for each employee

I need to create one row for each day between these two date, repeating the employee names.

 

Is there a way to do that?

2 ACCEPTED SOLUTIONS
ChielFaber
Solution Supplier
Solution Supplier

I had a similar usecase within my work environment and I solved this using M powerquery.

 

They idea is to create a list with dates between the start data and the enddate

 You can create a new column containing the list with dates as followed:

 

Table.AddColumn(  #"PreviousStepName", "NewColumnName", each List.Dates([Startdate], Duration.Days([Enddate] - [startdate]), #duration(1,0,0,0)
    ))
 
With this code you get a new column containing for each row a list with dates between the startdate and enddate. In the next step you simply expand the list and as a result you get a row for each date between the startdate and enddate.
 
For example when the startdate is 1-1-2023 and the enddate is 10-1-2023 you get a row for each day.

[Tip] Keep CALM and DAX on.
[Solved?] Hit “Accept as Solution” and leave a Kudos.
[About] Chiel | SuperUser (2023–2) |

View solution in original post

In this case, the last day isnt beeing created, what parameter defines that?

View solution in original post

5 REPLIES 5
ChielFaber
Solution Supplier
Solution Supplier

I had a similar usecase within my work environment and I solved this using M powerquery.

 

They idea is to create a list with dates between the start data and the enddate

 You can create a new column containing the list with dates as followed:

 

Table.AddColumn(  #"PreviousStepName", "NewColumnName", each List.Dates([Startdate], Duration.Days([Enddate] - [startdate]), #duration(1,0,0,0)
    ))
 
With this code you get a new column containing for each row a list with dates between the startdate and enddate. In the next step you simply expand the list and as a result you get a row for each date between the startdate and enddate.
 
For example when the startdate is 1-1-2023 and the enddate is 10-1-2023 you get a row for each day.

[Tip] Keep CALM and DAX on.
[Solved?] Hit “Accept as Solution” and leave a Kudos.
[About] Chiel | SuperUser (2023–2) |

In this case, the last day isnt beeing created, what parameter defines that?

Do you mean if the enddate is null? You could choose to replace those values with the date from DateTime.LocalNow from https://learn.microsoft.com/en-us/powerquery-m/datetime-localnow

 

If that isn't what your saying could you then provide a small example table with dummy data


[Tip] Keep CALM and DAX on.
[Solved?] Hit “Accept as Solution” and leave a Kudos.
[About] Chiel | SuperUser (2023–2) |

Add 1 to the "Count" parameter:  

 

List.Dates([Start], Duration.Days([End] - [Start])+1, #duration(1,0,0,0))
johnt75
Super User
Super User

You could create a calculated table in DAX

Employee dates =
SELECTCOLUMNS (
    GENERATE ( Employee, CALENDAR ( Employee[Start date], Employee[End date] ) ),
    "Employee first name", Employee[First name],
    "Employee last name", Employee[Last name],
    "Date", [Date]
)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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 Kudoed Authors