Thread
:
Add a button to add a line
View Single Post
04-15-2019, 10:25 AM
Logit
Windows 10
Office 2007
Expert
Join Date: Jan 2017
Posts: 591
.
Code:
Sub insertrows() ActiveCell.EntireRow.Offset(1).Resize(1).Insert Shift:=xlDown End Sub
The above will add a blank line below the cell that is selected.
If you click on A7, then run the above macro, the new line will be added
on A8.
Logit
View Public Profile
Find all posts by Logit