View Single Post
 
Old 04-28-2017, 08:39 AM
ilcaa72 ilcaa72 is offline Windows 7 64bit Office 2013
Novice
 
Join Date: Jan 2014
Posts: 27
ilcaa72 is on a distinguished road
Default

hello

i figured out both issues

1. destroy Document Variables
single by name:
ActiveDocument.Variables("FullName").Delete

All variables by loop:
For x = ActiveDocument.Variables.Count to 1 Step -1
ActiveDocument.Variables(x).Delete
Next x

2. Not returning correct Sentence Number. i entered the formula wrong, i actually assigned it, once removed it works

only outstanding issue is... Is this a solid way to achive my stated goal? thanks
Reply With Quote