B
Bob Umlas
Excel 97 DOES recognize it. When you're not putting in a formula, tho,
ActiveCell.Value works fine.
By the way, no need to select A1:
Range("A1").Value = ...
If A1 were to contain =B2. then you could use
Range("A1").Formula = "=B2"
or
Range("A1").FormulaR1C1 = "=r[1]c[1]"
which means one row down & 1 column to the right.
A live, online Excel Master Class is starting in September (which I'm
teaching).
For details, please follow this link:
http://www.iil.com/str_link_all_results.asp?select_cartid=395
Bob Umlas
Excel MVP
ActiveCell.Value works fine.
By the way, no need to select A1:
Range("A1").Value = ...
If A1 were to contain =B2. then you could use
Range("A1").Formula = "=B2"
or
Range("A1").FormulaR1C1 = "=r[1]c[1]"
which means one row down & 1 column to the right.
A live, online Excel Master Class is starting in September (which I'm
teaching).
For details, please follow this link:
http://www.iil.com/str_link_all_results.asp?select_cartid=395
Bob Umlas
Excel MVP