Consulting

Results 1 to 5 of 5

Thread: Based on combobox key word - toogle visibility of other Comboboxes

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Newbie
    Joined
    Mar 2019
    Posts
    5
    Location

    Based on combobox key word - toogle visibility of other Comboboxes

    Hi,
    In Word 2013 - I'm trying to find a key word in a Combobox then based on the outcome, toggling the visibility of others...trying this code...no good...help! Thank you.

    Private Sub ComboBox4_Change()
    If Me.ComboBox4.Value <> "Unintentional" Then
    Me.ComboBox5.Visible = False
    Me.ComboBox6.Visible = False
    Me.ComboBox7.Visible = False
    Me.ComboBox8.Visible = False
    Me.ComboBox9.Visible = False
    Me.ComboBox10.Visible = False
    Else
    Me.ComboBox5.Visible = True
    Me.ComboBox6.Visible = True
    Me.ComboBox7.Visible = True
    Me.ComboBox8.Visible = True
    Me.ComboBox9.Visible = True
    Me.ComboBox10.Visible = True
    End If
    End Sub
    Last edited by CraigP; 03-31-2019 at 05:04 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •