Multi List ComboBox That Maps Back in Individual Parts

reberryjr

Well-known Member
Joined
Mar 16, 2017
Messages
701
Office Version
  1. 365
Platform
  1. Windows
I'm wanting to present the EU with a way to identify who referred a Client to them. If another Client did, then I want to track how many referrals that Client has sent the EU's way. Client's have the following identifiers: Name, Nickname and Client ID. All 3 are already named ranges and of the 3, Client ID is the only unique identifier. The issue at hand is, I don't expect the EU to have to remember every Client's ID. Instead, I was thinking maybe present them with a 3 column combo box.

When the EU selects the value they want, I would want the 3 parts of the combo box to map back to a worksheet, in their separate parts.

I did some googling, but couldn't find an example that walked through all of these parts.

Here's how this part of the worksheet is structured. *I did remove some unimpacted columns.

Client IDNameNicknameReferral CategoryReferred By IDReferred By Name
TJ1Tom Jones Sr.TommyFriendMoonshine
ND2Nancy DrewNeenerClientTJ1Tommy

<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>

An example of what I'm looking for is, when Client "ND2" was added. I would have wanted a combobox to present
TJ1 Tom Jones Sr. Tommy

Is there a better route to accomplish my goal? If so, please advise. If not, can someone offer some guidance on how to solve this?
 
Sorry about that. Between the OP and Post 7, I made some structural changes, hence the change. Here are my thoughts...If the referring party is a Client, then Client is selected from cobo_RefCat. The cobo_RefNickname box should already have an inventory of nicknames that have been assigned to Clients. If they are a Client, I would want the cobo_RefID box to auto-populate the correct Client ID that is assigned to the referring Client.

Referred by Tom Jones, a Client
cobo_RefCat = Client, as selected by the EU
cobo_RefNickname = Tommy, as selected by the EU (this is already populated on initialization of the form)
cobo_RefID = TJ1 (this is one part of my struggle...tying the RefID to the RefNickname)

Referred by Smitty, not a Client
cobo_RefCat <> Client, as selected by the EU
cobo_RefNickname = Smitty, as entered by the EU (this isn't sourced from anywhere, as I'm only housing Client information at this point, so it would have to be typed in)
cobo_RefID = "" (this wouldn't be required, since there is no assigned ID)

Hopefully that makes more sense.
 
Upvote 0

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
@mikerickson I believe that I've figured it out. This code seems to be working.

Code:
Private Sub cobo_RefNickname_Change()
Dim ws3 As Worksheet
Dim FindRow As Range
Dim RefNick As Long
Set ws3 = ThisWorkbook.Sheets("Bios")
With ws3
'Finds the row where the value of the cobo_RefNickame exists, and populates the RefID combobox with the value of the Client ID, from the same row.
Set FindRow = Range("J:J").Find(What:=Me.cobo_RefNickname, LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows)
If Not FindRow Is Nothing Then
    RefNick = FindRow.Row
End If
End With
Me.cobo_RefID = ws3.Range("E" & RefNick).Value
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,509
Messages
6,125,216
Members
449,215
Latest member
texmansru47

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