Results 1 to 8 of 8

Thread: To Paste special by value

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Junior Member
    Join Date
    Aug 2012
    Posts
    12
    Rep Power
    0

    To Paste special by value

    HI Team,

    I have the macro which opens the files from specified folder and pastes in a file one below another.But the problem is its doing copy paste but i need Paste special by value; Pleas find the below code which I'm using.

    PHP Code:
    'ThisWorkbook.Worksheets("Data").Clear
     '
    On Error Resume Next
     Workbooks
    .Open Filename:=ThisWorkbook.Worksheets("Main").Cells(i1)
     
     
    ActiveWorkbook.ActiveSheet.Range("A1:O100").Copy Destination:=ThisWorkbook.Worksheets("Upload").Cells(j"A")
     
      
    ActiveWorkbook.Close
     j 
    100
     
     Application
    .Wait Now TimeValue("00:00:05")
     
    Next i
      ThisWorkbook
    .Worksheets("Data").Visible False
     
    End Sub 
    Please help me to turn the result in paste special by value.

    Thanks in Advance.
    Last edited by ravichandavar; 08-11-2013 at 05:18 AM.

Similar Threads

  1. Remove Special Characters From Text Or Remove Numbers From Text
    By Excel Fox in forum Excel and VBA Tips and Tricks
    Replies: 5
    Last Post: 05-31-2013, 04:43 PM
  2. Macro Copy Columns and Paste in rows.
    By TommyKris in forum Excel Help
    Replies: 3
    Last Post: 03-06-2013, 02:36 PM
  3. Replies: 2
    Last Post: 02-23-2013, 09:18 PM
  4. VBA -- Copy/Paste across sheets
    By Rasm in forum Excel Help
    Replies: 4
    Last Post: 09-21-2012, 02:07 PM
  5. Remove Special Characters :
    By Rajan_Verma in forum Rajan Verma's Corner
    Replies: 3
    Last Post: 03-06-2012, 09:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •