Excel Drop Down List Automatically Changes Info(multiple) to Code

nkendri24

New Member
Joined
May 22, 2018
Messages
16
I want the ability to create a list using data validation and give it a define name. With this I want a drop down menu that will display a title but once selected give a code. Here is the code I have right now:

Code:
<code>
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then GoTo exitHandler
If Target.Column = 1 Then
    If Target.Value = "" Then GoTo exitHandler
    Application.EnableEvents = False
    Target.Value = Worksheets("DataEntry").Range("A1") _
        .Offset(Application.WorksheetFunction _
        .Match(Target.Value, Worksheets("DataEntry").Range("Site_Name_ID"), 0), 0)
End If
exitHandler:
    Application.EnableEvents = True
    Exit Sub
End Sub

<code>

use this code to target columns 1, 2, 3, 4
all on worksheet DataEntry 
ranges A1, D1, G1, and J1
Range titles: Site_Name_ID, Grant_Code_ID, Area_od_Info_ID, and Source_Name_ID</code></code>
 
Last edited by a moderator:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Since this forum does not allow file attachments, you have to explain in more detail as to what you want.

I don't know what "once selected give a code" means.

What list are you creating for the Data Validation to pick from?

Is your code creating the Data Validation? If so, in what cells?

The last part talks about target columns A to D but your Range titles are A1, D1, G1, and J1.

It looks like you want to create a Data Validation list for the Selection worksheet event and then use Change worksheet event for something else.

Maybe explain in steps an example data input and then what you expect to happen.
 
Upvote 0
I would like to have two worksheets; one dataTemplate where the data validation will be, they will be in columns 1-4. they will be pulling information from a worksheet named DataEntry. In DataEntry the tables will be displayed as two columns; ID# (A1) and table name in (B1). there will be 4 tables. the 4 table names: Site_Name_ID(B1), Grant_Code_ID(E1), Area_of_Info_ID(H1), and Source_Name_ID(k1) (the ID# will be one column to the left of each of the columns listed). I would like to have the data validation create a list by pulling the info from table one (Site_Name_ID(B1)) and show the site Name data in the drop down but once selected display the ID# associated with the selection. The code in the first post does this function but I would like to do the same macro for the next three columns without having to repeat the macro.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
 If Target.Cells.Count > 1 Then GoTo exitHandler
 If Target.Column = 1 Then                           <= location where data validation will be in dataTemplate worksheet
    If Target.Value = "" Then GoTo exitHandler
    Application.EnableEvents = False
    Target.Value = Worksheets("DataEntry").Range("A1") _ <= "DataEntry" is the worksheet and "A1" is the location of the table there 
        .Offset(Application.WorksheetFunction _
        .Match(Target.Value, Worksheets("DataEntry").Range("Site_Name_ID"), 0), 0) <= "Site_Name_ID" is the name of the table given by define name in the formula tab
 End If
 exitHandler:
    Application.EnableEvents = True
    Exit Sub
 End Sub
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,215,831
Messages
6,127,142
Members
449,363
Latest member
Yap999

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