Do you only want to copy the result of a formula? If so, click on that cell you want to copy, then click Edit > Copy, then select your destination cell and click Edit > Paste special > Values, and click OK. Hit the Esc key to get out of copy mode.
Is this what you want or am I missing something?
Tom Urtis
sorry, i didnt explain myself, i have to do that in VBA! and i can only work out how to copy the formula aswell. cheerz
sorry didnt make that last bit clear
sorry, i didnt explain myself, i have to do that in VBA! and i can only work out how to copy the formula in VBA. cheerz
No problem, hopefully this will help then
No problem, here's what a simple one would look like in VB. Modify as needed.
Sub CopyPSV_Example()
Application.ScreenUpdating = False
Sheets("Sheet1").Select
Range("C4").Copy
Range("G8").PasteSpecial Paste:=xlValues
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
Any help?
Tom Urtis
Re: No problem, hopefully this will help then
cheerz thats great, worked a treat!
Instead of 6 lines of code, you can just use 1 line :-
Range("G8").Value = Range("C4")