I have a macro I am writing that I cannot seem to fix. I know this has been asked and I have read through some of the responses but just cant get it to work. i'm open for suggestions.
Code:
Dim c
For Each c In Range("B2:ZZ2").Cells
If c = "" Then
c.Select
Exit For
End If
Next
' count back 3, select column and insert column
ActiveCell.Offset(0, -3).Select
Columns("B:ActiveCell").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Last edited by a moderator: