Select the row header of the first row in your selected range.
Here the steps to select multiple contiguous rows by dragging: The first method is quite easy and quick since you don’t need to raise your finger from the mouse button and can select multiple rows with a single swift movement of your mouse. Selecting Multiple Rows that are Contiguous by Dragging You can use one of the following methods. If the rows you want to select appear one below the other, then the process is quite simple. Selecting Multiple Rows that are Contiguous
Selecting Multiple Rows that are Not Contiguous.
Selecting Multiple Rows that are Contiguous using the Excel Name Box.
Selecting Multiple Rows that are Contiguous using the SHIFT Key.
Selecting Multiple Rows that are Contiguous by Dragging.
Selecting Multiple Rows that are Contiguous.
If you know some other ways then feel free to comment below. So, these were the few methods to insert multiple rows in excel.
This macro is referenced from the Microsoft article:.
After adding the code you can press the “F5” key and the code will insert the required rows.
A69 is the number of rows to be inserted added with the start position and subtracted by 1 (for instance: If you want to insert 50 rows starting from A20 then the second parameter of the range should be (50+20-1), so the range will be (“A20:A69”)) A20 tells the position from where you wish to insert the rows and the second parameter.
Now comes the important thing, in the above macro the range is (“A20:A69”).
It doesn’t matter if the rows are empty but they must include the place where you want to perform the insert.įor Each CurrentSheet In ActiveWindow.SelectedSheetsĬurrentSheet.Range( "A20:A69").EntireRow.Insert
Open your spreadsheet and select the number of rows that you want to insert to your sheet.
Follow the below steps to use this method: In this method, we will use a hidden feature that excel offers to insert multiple rows to your sheet. Method 2 – By using the insert functionality:
This will repeat your last action and the rows will be added.
Then simply repeatedly press the “F4” key on your keyboard, till the required number of rows are inserted.
Open your spreadsheet, and first of all insert one row to your excel sheet manually.
In this method, we will first add one row manually to the excel sheet then repeat that action multiple times. This is the simplest way to insert multiple rows in your excel spreadsheet. Method 1 – By making use of the repeat functionality of excel:
Method 4 – Programmatically inserting multiple rows in excel:.
Method 3 – By using the insert copied cells functionality:.
Method 2 – By using the insert functionality:.
Method 1 – By making use of the repeat functionality of excel:.