ActiveCell.FormulaR1C1 = "=IF(c4:c4<='Title Page'!$B$19,1,0)" ?? HELP!!!

  • Thread starter Thread starter harteorama
  • Start date Start date
H

harteorama

Hi all,

Can anybody please help... i am trying to autofil a column with a
formula, but i can't seem to get the R1C1 bit when pointing to a cell
ref on another worksheet..

the actual formula that i want to insert is

"=IF($D:$D<='Title Page'!$B$19,1,0)"

Any help - v.much appreciated...

Vbr

Paul
 
=IF(C4<='Title Page'!R19C2,1,0)

but won't that just fill the column with the exact same formula, as it is
all absolute?

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
 
Seems to refer to the relevant row in the D column (at least it does on
my computer).

Richard
 
Perhaps since your formula is not in R1C1 notation, but is in A1 notation,
drop the R1C1 formula type:

ActiveCell.Formula = "=IF($D:$D<='Title Page'!$B$19,1,0)"

Mike F
 

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