VLOOKUP formula converted to VBA formula

jimmisavage

Board Regular
Joined
Jun 28, 2017
Messages
130
Hey everyone.
I have a conversion table and a formula working to give me a conversion rate based on dropdown lists. This formula was always intended to work on a userform but i wanted to test my formula before trying it in the userform.

Code:
=VLOOKUP(Conversions!F19,Conversions!A2:H8,MATCH(Conversions!E19,Conversions!A1:H1,0),0)*Conversions!G20

I have changed the formula to represent what is needed in the userform. The formula outcome would be shown in TextBox50

Code:
=VLOOKUP(ComboBox61,Conversions!A2:H8,MATCH(ComboBox62,Conversions!A1:H1,0),0)*TextBox68

How do I fully convert this formula to work inside a userform
 
Last edited:

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
To use worksheet formulae within VBA, use this layout, replacing the Arg1/2/3 with the vlookup syntax
Code:
Application.WorksheetFunction.VLOOKUP([Arg1],[Arg2],[Arg3])

so for your ComboBoxes and TextBoxes you may need to specify that it's their .value property that you're referring to, and I think you'll need to enter application.worksheetfunction. before the MATCH function too.
 
Upvote 0
Cross posted https://www.excelforum.com/excel-programming-vba-macros/1216222-formula-to-vba.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,215,256
Messages
6,123,914
Members
449,132
Latest member
Rosie14

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