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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
MarkusEng1998
Resolver II
Resolver II

Insert blank row at the end

I can insert a blank row using this code:

 

= Table.InsertRows(Source, 0,{Record.FromList(List.Repeat({""},Table.ColumnCount(Source)),Table.ColumnNames(Source))})

 

but the zero inserts at the beginnng of the table.

I would like to insert the blank row at the last row.

MarkusEng1998_0-1716577389748.png

 

 

I tried using Table.PositionOf(Source, RowAsRecord) but do not know how to extract the RowAsRecord.   

 

 Table.LastN(Source, 1)    // locates the row, but is not a record type.

 

     Finally I tried converting it to a record, but is not in the format [name="", value=""]

 

Record.FromTable(Table.LastN(Source, 1))

 

 

Hence, this code does not work:

 

= Table.InsertRows(Source, 

  Table.PositionOf(Source, 
		Record.FromTable(Table.LastN(Source, 1))),
		
  {Record.FromList(List.Repeat({""},Table.ColumnCount(Source)),Table.ColumnNames(Source))})

 

 

Please advise. Thank you!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Replace the "0" with Table.RowCount(Source). This will give you the row count, which is one more than the zero based index of the last row.

 

--Nate

View solution in original post

2 REPLIES 2
MarkusEng1998
Resolver II
Resolver II

Thank you @Anonymous that was easy!

Anonymous
Not applicable

Replace the "0" with Table.RowCount(Source). This will give you the row count, which is one more than the zero based index of the last row.

 

--Nate

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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