O
Office_Novice
Heres the thing, I have a form letter where all the information is provided
from a database via mail merge. This works, I am now trying to write a macro
to mask the Tax ID fields first 5 or so characters any ideas i was thinking
somthing like
Sub MaskTaxID()
With ActiveDocument
.Fields.Unlink
Left(.Fields("Tax_Id_1"), 7) = "xxx-xx-"
.Fields("Tax_Id_1").Update
End With
End Sub
But this isnt right Any help would be super.
from a database via mail merge. This works, I am now trying to write a macro
to mask the Tax ID fields first 5 or so characters any ideas i was thinking
somthing like
Sub MaskTaxID()
With ActiveDocument
.Fields.Unlink
Left(.Fields("Tax_Id_1"), 7) = "xxx-xx-"
.Fields("Tax_Id_1").Update
End With
End Sub
But this isnt right Any help would be super.