Index Match - ComboBox Worksheet.Function

kaemerso

New Member
Joined
Oct 26, 2017
Messages
10
Code:
Private Sub TextBox3_Change()


TextBox5.value = Application.WorksheetFunction.IfError(Worksheets("Codes"), Application.WorksheetFunction.Index(Worksheets("Codes").Range("b2:zz29"), Application.WorksheetFunction.Match(Worksheets("Codes"), "L50", ("a2:a29"), 0, Application.WorksheetFunction.CountIf(Worksheets("Codes").Range("$L$50:L50"), "L50", ""), "")))


End Sub

I have a userform that I need to set a combo-box to. This is not working. I would set a variable to it but I'm new to VBA. Can anyone help out?

Original excel formula is this:

CONCATENATE(VLOOKUP($P50,Table1[#All],2,FALSE),"-",IFERROR(INDEX(Codes!$B$2:$ZZ$29,MATCH($L50,Codes!$A$2:$A$29,0),COUNTIF($L$50:L50,L50)),""),"")
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Code:
Private Sub TextBox3_Change()


TextBox5.value = Application.WorksheetFunction.IfError(Worksheets("Codes"), Application.WorksheetFunction.Index(Worksheets("Codes").Range("b2:zz29"), Application.WorksheetFunction.Match(Worksheets("Codes"), "L50", ("a2:a29"), 0, Application.WorksheetFunction.CountIf(Worksheets("Codes").Range("$L$50:L50"), "L50", ""), "")))


End Sub

I have a userform that I need to set a combo-box to. This is not working. I would set a variable to it but I'm new to VBA. Can anyone help out?

Original excel formula is this:

CONCATENATE(VLOOKUP($P50,Table1[#All],2,FALSE),"-",IFERROR(INDEX(Codes!$B$2:$ZZ$29,MATCH($L50,Codes!$A$2:$A$29,0),COUNTIF($L$50:L50,L50)),""),"")


Anyone??
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,790
Members
451,589
Latest member
Harold14

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