Quote:
Originally Posted by rsrasc
The following code is an example of what I'm using to copy cell G17 ("ERPA") to cell A2 in "EPRALog", but what is doing is copying the formulas. I just want to copy the values. I tried several paste options but couldn't get it to work.
|
How about :
Worksheets("ERPALog").Range("A2").Value = Worksheets("ERPA").Range("G17").Text
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
|