View Single Post
 
Old 10-12-2014, 07:38 PM
Sgt Rock Sgt Rock is offline Windows 8 Office 2010 64bit
Novice
 
Join Date: Nov 2013
Location: Dallas, Texas
Posts: 16
Sgt Rock is on a distinguished road
Default

If you still want to copy as originally asked in your question just write a lil macro
E.G.
Sub CopyValue()
Range("G5").Select
Selection.Copy
Range("D8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
Reply With Quote