That can be shortened to:
If Me.CheckBox1 = True Then
Set newSelection = ActiveCell
For Each are In Selection.Areas
  Set newSelection = Union(newSelection, are, are.Offset(1))
Next are
newSelection.Select
End If