View Single Post
 
Old 05-15-2020, 10:47 AM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Paste this macro into a REGULAR MODULE :

Code:
Option Explicit

Sub Addrisk()
Dim i As Long

On Error Resume Next

Application.ScreenUpdating = False

With ThisWorkbook.Sheets("Weekly Schedule Planner")
    For i = 1 To .Range("A1000").End(xlUp).Row
            ActiveCell.Range("A" & i).EntireRow.Copy
            ActiveCell.EntireRow.Insert shift:=xlDown  'insert and shift down
    Next i
End With

Application.CutCopyMode = False
Application.ScreenUpdating = True 're-enable screen updates

End Sub
See attached file.

To use, click on any cell in COLUMN A, then click the Command Button on the sheet.
Attached Files
File Type: xlsm Weekly Schedule Planner for Forum.xlsm (52.0 KB, 11 views)
Reply With Quote