Thread: VLOOKUP MACRO
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
William[_2_] William[_2_] is offline
external usenet poster
 
Posts: 227
Default VLOOKUP MACRO

Hi John

1) Yes. Instead of
=VLOOKUP(A1,E4:F32,2,FALSE)
you could use
=VLOOKUP(17*2,E4:F32,2,FALSE)

2) Turn on your macro recorder, enter the vlookup formula and then and have
a look at the code. It should look something like..

Sub Test()
Range("B4").FormulaR1C1 = _
"=VLOOKUP(17*2,RC[3]:R[28]C[4],2,FALSE)"
End Sub

--
XL2002
Regards

William



"JOHN YOUNG" wrote in message
...
| 2 questions:
|
| 1st - in the vlookup formula is it possible to put a
| formula in the lookup_value field instead of a cell
| reference or text.
|
| 2nd - is there a vlookup macro or vb code available to
| have a look at. I have had a search on the knowledge
| base but cant seem to find one.
|
| Kind regards
|
| John Young