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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Vatz8
Helper I
Helper I

Split datetime columns into multiple rows for each day.

Hi,

I want to split the datetime columns range into multiple rows as shown below.

 

ID|     punch_Start                     | punch_End
--------------------------------------------
A | 2019-03-04 23:18:00| 2019-03-04 23:21:00
--------------------------------------------
A | 2019-03-04 23:45:00| 2019-03-05 00:15:00
--------------------------------------------

 

Required Output-

ID|       punch_Start                   | punch_End
--------------------------------------------
A | 2019-03-04 23:18:00| 2019-03-04 23:21:00
--------------------------------------------
A | 2019-03-04 23:45:00| 2019-03-04 23:59:00
--------------------------------------------
A | 2019-03-04 23:59:00| 2019-03-05 00:00:00
--------------------------------------------
A | 2019-03-05 00:00:00| 2019-03-05 00:15:14

 

 

Please let me know how can I achieve this.

2 REPLIES 2
AlienSx
Super User
Super User

Hi, @Vatz8 

let
    Source = your_last_step,
    types = Table.TransformColumnTypes(Source,{{"punch_Start", type datetime}, {"punch_End", type datetime}}),
    f = (lst as list) =>
        [id = lst{0},
        end = lst{2},
        gen = 
            List.Buffer(
                List.Generate(
                    () => lst{1},
                    (x) => x < end,
                    (x) => 
                        if DateTime.Time(x) = #time(23, 59, 00) 
                        then x + #duration(0, 0, 1, 0)
                        else DateTime.From(DateTime.Date(x)) + #duration(0, 23, 59, 0)
                )
            ),
        dts = List.Zip({List.Repeat({id}, List.Count(gen)), gen, List.RemoveFirstN(gen, 1) & {end}})][dts],
    rows = List.Buffer(Table.ToRows(types)),
    txform_rows = List.Combine(List.Transform(rows, f)),
    z = Table.FromRows(txform_rows, Table.ColumnNames(Source))
in
    z
PhilipTreacy
Super User
Super User

@Vatz8 

 

Please don't cross post your questions

 

Split Datetime range columns into multiple rows fo... - Microsoft Fabric Community

 

Thanks

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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