Which is the correct way to structure a With block?
:
With Selection .TypeText Text:="8/24/2019" .TypeParagraph .TypeText Text:="1161 Alamosa Drive" End With
With Selection: &TypeText Text:="8/24/2019" &TypeParagraph &TypeText Text:="1161 Alamosa Drive" End With
With Selection &TypeText Text:="8/24/2019" &TypeParagraph &TypeText Text:="1161 Alamosa Drive" End With
With Selection TypeText Text:="8/24/2019" TypeParagraph TypeText Text:="1161 Alamosa Drive" End With