View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Formula in macro or in sheet/cells?


If you can't think this out it might be easier if you just tell me what your
range (rabbi) is.

--
Don Guillett
SalesAid Software

"Heine" wrote in message
ups.com...
Hi again Don

I have problems understanding this line:

Set frng = Range("c16:c" & Cells(Rows.Count, "a").End(xlUp).Row)

what is "a"? - where do I fill in my data in this line exactly?

/Heine


Don Guillett wrote:
just a name. Name it whatever you like such as Myrng or Crng or xxxxx

--
Don Guillett
SalesAid Software

"Heine" wrote in message
ups.com...
Thanks for the template, Don - what is frng?

/Heine

Don Guillett wrote:
modify this idea to suit
Sub makeformulae()
Set frng = Range("c16:c" & Cells(Rows.Count, "a").End(xlUp).Row)
With frng
.Formula = "=vlookup(a16,$a$16:$b$22,2,0)"
.Formula = .Value'changes to a value if desired
End With
End Sub

--
Don Guillett
SalesAid Software

"Heine" wrote in message
oups.com...
Hi,

I would like to put my lookup formula in the macro instead of in the
cells.

=IF(A9="";"";IF(ISNA(VLOOKUP(A9;raab1;3;FALSE));"" ;(VLOOKUP(A9;raab1;3;FALSE))))


Any suggestion as to how this is done most easily? What are the
implications of this? Is it at all smart? The idea is that I can use
the macro in many sheets instead of copying the formulas from sheet
to
sheet.

Thanks in advance!

/Heine