![]() |
|
#1
|
|||
|
|||
![]()
I am using the below VB code to auto fill text based on drop down using content control. I need to also create a dropdown based on another drop down selection. How do I include in the piece of code. Please help.
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean) Dim i As Long, StrDetails As String With ContentControl If .Title = "Company" Then For m = 1 To .DropdownListEntries.Count If UCase(.DropdownListEntries(m).Text) = UCase(.Range.Text) Then Select Case m Case 1 StrDetails = "" Case 2 StrDetails = "Singapore" Case 3 StrDetails = "Singapore" Case 4 StrDetails = "Singapore" Case 5 StrDetails = "Malaysia" Case 6 StrDetails = "Thailand" Case 7 StrDetails = "Cambodia" Case 8 StrDetails = "Philippines" Case Else: StrDetails = " " End Select End If Next ActiveDocument.SelectContentControlsByTitle("Count ry").Item(1).Range.Text = StrDetails End If End With End Sub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
spk | Word VBA | 43 | 07-31-2022 03:51 PM |
![]() |
ajanson | Word VBA | 36 | 07-15-2019 08:16 PM |
![]() |
trainsy | Word | 2 | 06-04-2014 04:43 AM |
block selection in dropdown list | Intruder | Excel | 2 | 01-10-2013 10:20 AM |
![]() |
coconutt | Word VBA | 5 | 09-13-2012 05:23 PM |