Formula Replacement

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

I have a worksheet that I need to replace the formula in
numerous cells. Below is a portion of the SUB I set up to
replace the formula in one of the cells

Sub Discrete_Update()
.......
Range("E3").Select
ActiveCell.FormulaR1C1 = _
"=IF('BOE-Data & Text'!
L14<>""Discrete"","""",Task_Start_Date)"
.......
End Sub

It replaces the formula but places tic marks around the
cell address (L14). =IF('BOE-Data &
Text'!'L14'<>"Discrete","",Task_Start_Date)

This causes the cell to display #Name?. As soon as I go
to the cell and remove the tic marks the formula works
fine.

Any ideas why this is happening and what I can do to
correct it?

Thanks,

Lee
 
Range("E3").Formula = _
"=IF('BOE-Data & Text'!L14<>""Discrete"","""",Task_Start_Date)"

Since your reference is in A1, not R1C1 use Just formula rather than
formulaR1C1
 
how about

[a1:a20].Copy [c1]

which will copy the contents of a1:a20 (containing the new
formulas) to c1 to c20 (containing the formulas to be
replaced)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top