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

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
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,226,121
Messages
6,189,099
Members
453,524
Latest member
AshJames

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