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
MarvEw1111
Frequent Visitor

Adding rows with the same value until a condition is met

The following problem:

We have a time series, which we subtract from the DB. The data is available in such a way that a new value is only saved when there is a change in a column. Now I would like to create a complete time series. For this I would have to create a Power Query formula. This should add more rows with the same values until a change occurs. From that point on, the new values should be entered. The steps are in minute increments and the rows should be padded accordingly. Can anyone help me with this?

MarvEw1111_0-1681741961469.png

 

 

1 REPLY 1
artemus
Microsoft Employee
Microsoft Employee

start by creating a time list:

List.Generate(() => List.Min(myTable[Date]), each _ < List.Mac(myTable[Date]), each _ + #duration(0,0,1,0))

Next, convert the list to a table, and to a left join on that table with your primary table.

Finally, use Fill down to replicate the values in column A and B.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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