View Single Post
 
Old 08-01-2021, 11:23 PM
Javi78503 Javi78503 is offline Windows 10 Office 2019
Novice
 
Join Date: Jul 2021
Posts: 14
Javi78503 is on a distinguished road
Default

Quote:
Originally Posted by Guessed View Post
That looks a lot simpler. If you are always adding the values as a new paragraph at the end of the document it could be even shorter
Code:
If Me.PNBox <> "Person Name" Then
  ActiveDocument.Range.InsertAfter vbCr & Me.PNBox & ", " & Me.DABox & ", " & Me.TABox
End If

Thanks! even less code I have to type up
Reply With Quote