I am entering this code Via VBA into a cell:
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?
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?