I have this Marco below, how do I make sure the active cell is in column D before the Marco runs, I don't need a row number just need to be sure it is in column D, if not in column D I need to exit the sub and do nothing. Thanks for your help, PS what's your opinion on the new board? I think it will be better in the long run.
Sub not_building_number()
Application.ScreenUpdating = False
ActiveCell.Offset(0, 3).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
ActiveCell.Offset(0, -5).Select
Selection.FillRight
ActiveCell.Offset(0, 2).Select
Application.ScreenUpdating = True
End Sub
Sub not_building_number()
Application.ScreenUpdating = False
ActiveCell.Offset(0, 3).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
ActiveCell.Offset(0, -5).Select
Selection.FillRight
ActiveCell.Offset(0, 2).Select
Application.ScreenUpdating = True
End Sub