View Single Post
 
Old 04-03-2015, 02:38 AM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,137
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

The dropdown values are numeric values which represent the positions of the texts in the list. So you would use

Code:
Sub Dropdown4()
    Select Case ActiveDocument.FormFields("Dropdown4").Dropdown.Value
        Case 1
            ActiveDocument.Bookmarks("RiskTData").Range.Font.Hidden = False
        Case 2, 3
            ActiveDocument.Bookmarks("RiskTData").Range.Font.Hidden = True
        Case Else
    End Select
End Sub
__________________
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