+ Reply to Thread
Results 1 to 3 of 3

Changing Paste Special to Values and Format

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-05-2010
    Location
    New York
    MS-Off Ver
    Excel 2016
    Posts
    747

    Changing Paste Special to Values and Format

    In the code below I would like to change the statement to paste as values and format. When the macro runs now it pastes as values but not the format. Can anyone help?

    Private Sub RunIt()
    
    If Code > 0 Then
    sheet1.Range("I14", "IV18").Select
    Selection.Copy
    Worksheets("Results").Activate
    ActiveSheet.Range("I" & Code * 5 + 9).Select
    End If
    
    ActiveSheet.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False
    Last edited by Leith Ross; 03-18-2010 at 04:57 PM.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Changing Paste Special to Values and Format

    Hello rhudgins,

    Here is the revised code. The PasteSpecial has to be done twice on the range, once for values and again for formats.
    Private Sub RunIt()
    
      If Code > 0 Then
        Sheet1.Range("I14", "IV18").Copy
        With Worksheets("Results").Range("I" & Code * 5 + 9)
          .PasteSpecial Paste:=xlPasteValues
          .PasteSpceial Paste:=xlPasteFormats
        End With
      End If
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Contributor
    Join Date
    01-05-2010
    Location
    New York
    MS-Off Ver
    Excel 2016
    Posts
    747

    Re: Changing Paste Special to Values and Format

    Thanks! In addition in the attached excel sheet I would like to add a code that copies the values on the data tab from column C and D to the sheet1 tab in cells F7 and F9. Can you help me with this?

    Private Sub getreport(Code As Integer)
    'Copy dates
        StartDate = ActiveCell.Offset(0, 8).Value
        EndDate = ActiveCell.Offset(0, 9).Value
    'First line
        CellToCopy = "G" & ActiveCell.Row
        Range(CellToCopy).Select
        Selection.Copy
        If (ActiveCell.Offset(0, -5).Value = "Long") Then
            sheet1.Select
            sheet1.Range("B7").Select
            sheet1.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False
        Else
            sheet1.Select
            sheet1.Range("D7").Select
            sheet1.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False
        End If
        Worksheets("Data").Select
        Range("A" & ActiveCell.Row).Select
        BasketCode = ActiveCell.Offset(1, 1).Value
        StartRow = ActiveCell.Row
        OffsetRow = 0
        Do Until ActiveCell.Offset(OffsetRow, 0).Value <> Code
            OffsetRow = OffsetRow + 1
        Loop
        Range("G" & StartRow + 1, "G" & StartRow + OffsetRow - 1).Select
        Selection.Copy
        If (BasketCode = "Short Basket") Then
            sheet1.Select
            sheet1.Range("D13").Select
            sheet1.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False
        Else
            sheet1.Select
            sheet1.Range("B13").Select
            sheet1.PasteSpecial Format:=3, Link:=1, DisplayAsIcon:=False
        End If
        CurrentDate = Now()
        If (EndDate > CurrentDate) Then
            EndDate = ""
        End If
    
        sheet1.Range("C36").Value = StartDate
        sheet1.Range("C37").Value = EndDate
        
        CurRow = StartRow + OffsetRow
        
        
        Application.Run "RefreshEntireWorksheet"
        Application.OnTime Now + TimeValue("00:00:10"), "RunIt"
        
        
    End Sub
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1