Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
In a sub routine, how would I select (or pre-select) multiples values?
Currently I use something like this to choose a single state but I now want to choose two or more states.
ActiveDocument.Fields("State").Select "CA"
ActiveDocument.Fields("State").Select "TX"
Thanks!
I would assume it would work the same way as trying to select multiple values within the tool itself:
ActiveDocument.Fields("State").Select "(CA|TX)"
Disclosure: I haven't test this, just going off of what I already know about the tool.
Ah... I was missing the parenthesis. That's why it didn't work for me before posting this question.
Thank you.