Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How can I use a macro using ActiveDocument.GetField("Month").Select to select multiple months?
I am able to select a singular year and singular month but I need to select multiple months.
Thanks,
Kevin.
HI, if month is a numerical value, you can use .Select ">=3 <=6"
Regards & good luck
H.
To select non-consecutive months, you would have to utilize ToggleSelect.
ActiveDocument.GetField("Month").Select "April"
ActiveDocument.GetField("Month").ToggleSelect "June"
ActiveDocument.GetField("Month").ToggleSelect "December"