Thanks Dana,
Not sure of the reason, but i think it could be because it is a formula,
but i am getting a "0" value.
I want to copy a (MAX) formula VALUE from sheet1 and place the value
ONLY(Not the formula) to a cell in another sheet.
If i click on the Cell where the value is pasted("0"), the FORMULA BAR
displays the Formula from the Copied Cell in the other sheet, NOT the
Actual Value.
Any way around this that you know of ?
Corey....
Dana DeLouis said:
This don't work :
[R59].Select
ActiveCell.Paste
What is a Paste Code ?
Hi. Paste works a little differently. Excel uses a worksheet object,
and not a range object.
As a technique, select the word "Paste" in vba, and hit the F1 button.
Then look under "WorkSheet" object.
Sub Demo()
[R59].Cut
[R59].Select
ActiveSheet.Paste
End Sub
or...
Sub Demo2()
[R59].Cut
ActiveSheet.Paste ([R59])
End Sub
--
HTH. :>)
Dana DeLouis
Windows XP, Office 2003
If this code will copy a Cell value:
[R59].Select
ActiveCell.Copy
and this is a Cut code :
[R59].Select
ActiveCell.Cut
What is a Paste Code ?
This don't work
[R59].Select
ActiveCell.Paste
What is the code equivalent to paste ?
Corey....