Can someone help me to understand why entering a formula this way does not work
Range("K5").Select
ActiveCell.Formula2R1C1 = "=IF(LIST!B2="",1,LIST!B2)"
but, entering this way does.
Range("T5").Select
ActiveCell.FormulaR1C1 = "=IF(list!R[6]C[-18]="""",10,list!R[6]C[-18])"
Range("K5").Select
ActiveCell.Formula2R1C1 = "=IF(LIST!B2="",1,LIST!B2)"
but, entering this way does.
Range("T5").Select
ActiveCell.FormulaR1C1 = "=IF(list!R[6]C[-18]="""",10,list!R[6]C[-18])"