Sub Macro1()
If ActiveCell.Column = 2 Then
ActiveCell.EntireRow.Insert
Range("B2:U2").Copy
ActiveCell.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
Else
Exit Sub
End If
End Sub