I’m reviewing some VBA code which I did not write, and I’ve seen code similar to the following:
ActiveDocument.Variables.Add “Office”, “0” Or “123”
I’m not familiar with the Or operator used when setting the value of a variable. Can anyone tell me how the Or operator functions here, and how/why a condition would be evaluated (if indeed that’s what is occurring).
Thanks.