Link to home
Start Free TrialLog in
Avatar of drezner7
drezner7

asked on

Paste Special

I would like to know how to use paste special values in to Excel. I have played around with
oSheet2.Range("B3").PasteSpecial = Value, but It does not work.  

Can you help ?

thank you
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Record a macro while doing it and then edit the macro to see how it's done.
Avatar of drezner7
drezner7

ASKER

i do not want a macro, my code in vbscript is pretty large and I need to add this piece to it...
Is there anyone that can help?
   Range("D113:F113").Select
    Selection.Copy
    Range("T97").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
BillPrew, you Rock...  You are awesome your help has allowed me to learn a lot more about VBS and how to use it correctly.  Thank you so much
Glad that helped, and thanks so much for the kind works, and grade.

~bp