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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Matty
Helper II
Helper II

Insert row with reference to an existing row - Power Query...

Hi Team,

 

Looking for some help inserting a new row (record) to my 2 column table based on the minimum date in one of the columns.

 

Here's my table: 

 

Week_IndexStart_Date
109/04/2018
216/04/2018
323/04/2018
430/04/2018

 

And I want it to look as follows:

 

Week_IndexStart_Date
002/04/2018
109/04/2018
216/04/2018
323/04/2018
430/04/2018

 

Where a new record has been inserted with 'Week_Index' = 0 and 'Start_Date' = min of all existing dates - 7 days.

 

I have the following code, but the syntax is not quite right:

 

Custom1 = Table.InsertRows(#"Renamed Columns",2, { [Week_Index = 0, Start_Date = List.Min([Start_Date]-7)] })

 

Can anyone help, please?

 

Thanks,

 

Matty

1 ACCEPTED SOLUTION
Interkoubess
Solution Sage
Solution Sage

Hi @Matty,

 

Please change your formula by the following one:

Custom1=Table.InsertRows(#"Renamed Columns",2, { [Week_Index = 0, Start_Date = List.Min(#"Renamed Columns"[Start_Date])+#duration(-7,0,0,0))] })

Hope it helps....

 

 

Ninter

View solution in original post

2 REPLIES 2
Interkoubess
Solution Sage
Solution Sage

Hi @Matty,

 

Please change your formula by the following one:

Custom1=Table.InsertRows(#"Renamed Columns",2, { [Week_Index = 0, Start_Date = List.Min(#"Renamed Columns"[Start_Date])+#duration(-7,0,0,0))] })

Hope it helps....

 

 

Ninter

Hi Ninter,

 

Thanks for that - it worked as desired.

 

Cheers,

 

Matty

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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