Thanks,
I am not familiar with CASE. How would I predicate it on the result of the AltClientRepName response? If they wanted to put in a name, then the other 3 fields should be filled, if not, then they are all set to a space to avoid errors in the doc. If the Name is filled in but the others are blank, they still need to be checked and filled in.
Is the Select case ActiveDocument.Response.Re
Main Topics
Browse All Topics





by: SCHUMI33Posted on 2009-10-10 at 05:53:12ID: 25542128
Don't get confused with loops. If then else statements are not looping. You only use loops such as 'WHILE / WEND" when looping through a record set.
sult ntRepPhone .Result="" ntRepName. Result=""
Have you tried using CASE statements instead? It will save you using alot of unecessary IF THEN ELSE statements. For example see below:
Select case ActiveDocument.Response.Re
Case "No"
ActiveDocument.txt_AltClie
Case " "
ActiveDocument.txt_AltClie
Case " "
etc....
Hope this helps