Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hello,
I am trying to figure out a method for turning one row of data for a particular time frame into several rows for that same duration of time. The image shows an example of what I want to do. The first row in the green table should be split into the first 2 rows of the blue table and the second row of the green table should be split into the last 3 rows of the blue table. I have tried doing this with the List.Dates function and the Table.SelectRows function but the list dates function cannot convert my table into type date. I thought a loop might allow me to go row by row in my table and pull out the Start and End dates. Any assistance or ideas you can provide are welcomed. Thank you!
Solved! Go to Solution.
Before trying to do anything else, you should make sure the column is of type date (you can do this in the wizard under transform). Then, you can use something like this M code to get the rest of it done:
#"Added Custom" = Table.AddColumn(#"Changed Type", "Days", each Duration.Days([End] - [Start]) + 1),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each List.Dates([Start], [Days], #duration(1, 0, 0, 0))),
#"Expanded Custom" = Table.ExpandListColumn(#"Added Custom1", "Custom")
Before trying to do anything else, you should make sure the column is of type date (you can do this in the wizard under transform). Then, you can use something like this M code to get the rest of it done:
#"Added Custom" = Table.AddColumn(#"Changed Type", "Days", each Duration.Days([End] - [Start]) + 1),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each List.Dates([Start], [Days], #duration(1, 0, 0, 0))),
#"Expanded Custom" = Table.ExpandListColumn(#"Added Custom1", "Custom")
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
82 | |
67 | |
61 | |
46 | |
45 |