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

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

Reply
VladSorokin
New Member

Create a table based on another table using formula

Hi,

I'm very new to PowerQuery but have a task that makes me mad.

Imagine I have a table that possesses 3 columns: "Start Date", "End Date", and "Name". Say, this table contains information about sprints.

I need to convert this table into another one that contains only 2 columns: "Date" and "Name". So that each date within a period [StartDate...EndDate] gets a line within my second table.

 

Example:

Input Table:

Start DateEnd DateName
1 Jan 20235 Jan 2023Sprint 1
10 Jan 202311 Jan 2023Sprint 2

 

Output Table:

DateName
1 Jan 2023Sprint 1
2 Jan 2023Sprint 1
3 Jan 2023Sprint 1
4 Jan 2023Sprint 1
5 Jan 2023Sprint 1
10 Jan 2023Sprint 2
11 Jan 2023Sprint 2

 

It's clear to me that I should walk through the InputTable row by row and then fulfill the OutputTable using the row data. But... no idea how to do it in practice. Could someone help me with this?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @VladSorokin ,

 

Please follow the steps below:

in power quert editor --> add a custom column:

List.Transform({Number.From([Start Date])..Number.From([End Date])},each Date.From(_))

vcgaomsft_0-1675235204846.png

expand [Date] and remove [Start Date] and [End Date]:

vcgaomsft_1-1675235300871.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @VladSorokin ,

 

Please follow the steps below:

in power quert editor --> add a custom column:

List.Transform({Number.From([Start Date])..Number.From([End Date])},each Date.From(_))

vcgaomsft_0-1675235204846.png

expand [Date] and remove [Start Date] and [End Date]:

vcgaomsft_1-1675235300871.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Thanks a lot, Gao, this works!!!

HotChilli
Super User
Super User

I won't give you the full answer but you can represent dates as numbers and then if you create a list using

{[start]..[end]} you can expand that 'to rows' and convert back to dates.

There are examples on the forum or on the web.

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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