Looking for ComboBox Masters!! Please

Aaron DOJ

New Member
Joined
Aug 10, 2018
Messages
36
Office Version
  1. 365
Platform
  1. Windows
I have ran into many road blocks trying to figure out how to combobox while keeping my original (pre-combobox) settings.

First off let me explain why I am using combobox, the document I have made, there are complaints about the dropdown lists being too small (Font size). I have tried the zoom commands and they were not liked so now I am using combobox.

My pre-settings were as follows:
-K7 has Data Validation (DV) =$AE$17:$AE$26—User chooses their Department

-O7 has DV =INDIRECT(K7) —User chooses their Section and then S7 will auto fill with accounting information. These tables for the sections are in AF thru AN.

-W7 has DV =Names and VBA code (see below) to instantly change the name of a work location to the physical address location once a selection has been made.

Code:
If Target.Address(0, 0) = "W7" Then
    If Target.Cells.Count > 1 Then Exit Sub
    If Target.Value = "" Then Exit Sub
    Application.EnableEvents = False
    On Error GoTo exitHandler:
    Target.Value = Worksheets("TEDS").Range("AR16") _
        .Offset(Application.WorksheetFunction _
        .Match(Target.Value, Worksheets("TEDS").Range("Names"), 0), 0)
End If
 
 
exitHandler:
    Application.EnableEvents = True


I added in the code for combobox (see below), put in the combobox and everything looked great when I went to K7, list was bigger and had all the departments. I moved on to O7 and no combobox so I went to DV and got the following “The selection contains more than one type of validation. Erase current settings and continue?” OK or Cancel. Well I figured clearly I can’t do cancel as nothing will change and I so I have to go with OK and start over. I put in the =INDIRECT(K7) back in and it will no longer show me the updated dropdown list for a user to select their section based on what department they chose...it's just a white box. How can I fix this issue?

Lastly, W7 has the drop-down list but won’t convert to address after selection is made. How can I fix this issue?




Code:
Private Sub ComboBox1_Change()
On Error Resume Next
xRg.Value = Me.ComboBox1.Text
End Sub


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo LblExit
With Me.ComboBox1
.Visible = False
If Target.Validation.Type = xlValidateList Then
Target.Validation.InCellDropdown = False
.ListWidth = 120
.ListFillRange = ""
.ListFillRange = Target.Validation.Formula1
.Left = Target.Left
.Top = Target.Top
.Width = Target.Width
.Height = Target.Height
.Font.Size = 16
.Visible = True
Set xRg = Target
End If
End With
LblExit:
Exit Sub

-Aaron
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Community,

Is there anything I can add to assist someone in helping me solve these issues?
 
Upvote 0
Still hoping to find someone to help me out, this is literally now the last thing I need to finalize my project I've been working on for seven months.
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top