View Single Post
 
Old 11-21-2016, 09:14 PM
Father Father is offline Windows 7 32bit Office 2013
Novice
 
Join Date: Nov 2016
Posts: 29
Father is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
I don't understand what you mean about removing comments - there is no need to remove comments from the macro code. They are never executed; they just explain things. They also have no connection with table bookmarks.
I was referring to:
' If you need the formfields named, activate the commented-out code.
Perhaps I didn't use the right terms. I did that for:
'For Each FmFld In .FormFields
'StrNms = StrNms & "|" & Left(FmFld.Name, Len(FmFld.Name) - 2) & Format(i, "00")
'Next
and
'.Select
'With Dialogs(wdDialogFormFieldOptions)
'.Name = Split(StrNms, "|")(i)
'.Execute
'End With

Right now I'm doing the stuff in the DropDownDemo.doc. It's pretty labor intensive.

So, when using that, whatever number I have set to a certain drop-down, can that number be used for a calculation?
Reply With Quote