Hi All,
I'm trying to figure out how to make a textbox visible only if a merge field in it has data. My best guess is something like this should work (but of course it doesn't). Any help is appreciated.
If ActiveDocument.MailMerge.Fields(UD_Notice) Is Not Null Then
Set Box = ActiveDocument.Shapes.AddTextbox( _
Orientation:=msoTextOrientationHorizontal, _
Left:=350, Top:=200, Width:=200, Height:=180)
Box.TextFrame.TextRange.Text = UD_Notice
End If