About 61,300 results
Open links in new tab
  1. VBA: Insert row + keep formulas | MrExcel Message Board

    Jul 12, 2020 · Similar threads D VBA inserting row based on a cell value and implement merged cells Db002 Jul 20, 2025 Excel Questions Replies 7 Views 341 Jul 22, 2025

  2. VBA insert an entire row at the last table row - MrExcel

    Jul 29, 2021 · Set tbl = ActiveSheet.ListObjects ("XYZ") tbl.ListRows.Add lastRow1 = 1 However, this only inserts a row in the table not the complete row. I have know the code to insert a full …

  3. Insert Row "Event" | MrExcel Message Board

    Feb 27, 2003 · One of the MVPs on this board, and one of the newest Microsoft Excel MVPs, is Masaru Kaji, also known as Colo. Bill Jelen's newest Excel & VBA book will be out in a couple …

  4. Macro: If cell contains value, then insert rows, based on ... - MrExcel

    May 15, 2012 · Then insert (below) the the number of rows that the cell in F5 equals So, if "1" shows up in cell B5, and if F5 equals 3, then 3 blank rows would be added below row 5 Then, …

  5. VBA to insert new row and copy line from above - MrExcel

    Aug 11, 2022 · I have column C with ascending values in increments of 0.001, I need a macro to find where there are breaks in the sequence, then I need to insert a new line where the break …

  6. Inserting rows with VBA too slow | MrExcel Message Board

    Jan 7, 2020 · The named ranges span the whole column of the dynamic table, meaning that if you insert a row, the named range still covers any extra rows. You can record a macro to insert …

  7. Macro to insert a row below the active cell - MrExcel

    Oct 17, 2015 · Sub Macro1() r = ActiveCell.Row Cells(r + 1, 1).EntireRow.INSERT Cells(r, 1).Copy Destination:=Cells(r + 1, 1) End Sub I need to insert a row below the row that my …

  8. Insert rows without copying borders | MrExcel Message Board

    Oct 30, 2009 · I have a macro that finds rows with the text “Account” in Column A and inserts 2 blank rows above that row (There are multiple rows with “Account” in Column A on the …

  9. Automatically add row numbers | MrExcel Message Board

    Jan 23, 2014 · I am looking for a way to add row numbers to my worksheet by using VBA code. For example I want to be able to start on row 3 for example - go find the last row (lets say its …

  10. VBA how to insert a row after a specific row number only

    Jan 20, 2023 · Due to a few reasons regarding cell security and trying to consider user requests. I've been forced down a road to make a button that allows me to insert a user selected number …