View Single Post
 
Old 09-19-2014, 09:32 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,138
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

A macro would merely have to update the fields to update the conditional field. e.g.

Code:
Sub UpdateMacro1()
ActiveDocument.Range.Fields.Update
End Sub
is all that is needed; however you cannot force a user to run macros, so you would be better instructing the users to tab through the fields as this doesn't require macros. You can add help text to the field or use an accompanying instruction.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote