Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am writing a macro in which I make use of GetPossibleValues , like this
set SupervisorNames = ActiveDocument.fields("Supervisor Name").GetPossibleValues
For i = 0 to SupervisorNames.Count -1
hi
try this one
set SupervisorNames = ActiveDocument.fields("Supervisor Name").GetPossibleValues ("500")
this will get upto 500 values
regards
Peter
hi
try this one
set SupervisorNames = ActiveDocument.fields("Supervisor Name").GetPossibleValues ("500")
this will get upto 500 values
regards
Peter
Thanks a lot Peter, that solved my problem.
you saved me life!