The VBA macro below used to copy all info, formatting and formulas up one row after inserting that row. Now it inserts the row, copies the formatting but not the data.
Can anyone help with this one. I cannot determine what changed to make this happen.
It appears to be related to only one worksheet, I've placed this in personal.xlsb as I use it quite often in all my worksheets.
Sub COPYROWINFOUP()
With Selection.EntireRow
.Copy
.Insert
End With
Application.CutCopyMode = False
End Sub
Bookmarks