Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have exceptionally basic VB script skills but I want to change a variable value by a macro, I have seen some answers on the forum but I can not make the scripts work.....so
SUB ActivateOpertionalView
how do I get varialble VisibleReports = "Operational" ??
This is what you need:
ActiveDocument.Variables("VisibleReports").SetContent "Operational", true
Have a look at the API guide - its not the most intuitive guide but persevere with it and it is actually very valuable.
Regards,
Gordon
thanks perfect