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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.