I am creating a merge document that looks at many fields from my source. I have 2 fields that hold balances, what I am trying to do is check the value of Bal2, and then only show 1 field depending on the value. I have not wrote vba for word before, so not sure how to do this.
Thanks,
GJ
Thanks,
GJ
Code:
Sub check()
If Bal2 > 0 Then
Bal1
Else
Bal2
End If
End Sub