VBA Formula Has Issue

MikeDBMan

Well-known Member
Joined
Nov 10, 2010
Messages
610
I am entering this code Via VBA into a cell:

Code:
Cells(x, 4).FormulaR1C1 = "=VLOOKUP([@EEID],Manpower!A:U,18,FALSE)"

The formula gets recorded as:
=VLOOKUP([@EEID],Manpower!A: (U),18,FALSE)
(without the space after the Colon

And then evaluates to #NAME?

What is up with the () around the U and how to I avoid this issue?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
I am not sure how it could record the []'s or the ()'s.

Try:
Code:
Cells(x, 4).FormulaR1C1 = "=VLOOKUP(" & [@EEID] & ",Manpower!A:U,18,FALSE)"
You should make sure the the formula works manually.
 
Upvote 0
I didn't try your method but will. In the meantime I figured a workaround. I created a named range on the Manpower sheet that encompassed all the columns I needed. When I changed my formula to

Code:
=VLOOKUP([@EEID],MPLookUp1,18,FALSE)
it worked just fine.
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,849
Members
452,948
Latest member
UsmanAli786

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