Results 1 to 3 of 3

VBA MACRO Paste table to Print

Threaded View

  1. #1
    Forum Contributor
    Join Date
    02-17-2022
    Location
    Europe
    MS-Off Ver
    Microsoft® Excel® for Microsoft 365 MSO (Version 2407 Build 16.0.17830.20056) 64-bit
    Posts
    117

    VBA MACRO Paste table to Print

    Hey guys its me again bothering you all


    So trying to figure out some stuff, so far being great actually. So got a bit stuck haha


    The thing got stuck was making the code only work if something is being filtered, if not is being filtered the code does nothing. And having few issue when the table is pasted printing is not printing the table correctly.

    the table to be printed is sheet "TESTPASTE"

    Private Sub TEST1()
    
    Dim rng1 As Range, rng2 As Range, rngMERGE1 As Range, rngMERGE2 As Range, rngMERGE3 As Range
    Dim ques As String, Text1 As String, Text2 As String, Text3 As String
    
    
    Text1 = "HEADER1"
    Text2 = "HEADER2 " & Format(Date + 1, "dd/MM")
    Text3 = "HEADER3"
    
    
    Set rngMERGE1 = REC_TEST.Range("B1:E1")
    Set rngMERGE2 = REC_TEST.Range("B2:J2")
    Set rngMERGE3 = REC_TEST.Range("K2:O2")
    
    Set rng1 = REC123.Range("B4:O" & REC123.Range("B" & Rows.Count).End(xlUp).Row)
    Set rng2 = REC_TEST.Range("B3:O" & REC_TEST.Range("B" & Rows.Count).End(xlUp).Row)
    
    REC_TEST.Cells.Clear
    
    
    With rngMERGE1
        .Merge
        .Value = Text1
        .Font.Bold = True
        .Font.Name = "Calibri"
        .Font.Size = 15
        .WrapText = True
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .Interior.ColorIndex = 35
        .BorderAround , LineStyle:=xlContinuous, Weight:=xlThick
    End With
    
    With rngMERGE2
        .Merge
        .Value = Text2
        .Font.Bold = True
        .Font.Name = "Calibri"
        .Font.Size = 13
        .WrapText = True
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .Interior.ColorIndex = 40
        .BorderAround , LineStyle:=xlContinuous, Weight:=xlThick
    End With
    
    With rngMERGE3
        .Merge
        .Value = Text3
        .Font.Bold = True
        .Font.Name = "Calibri"
        .Font.Size = 13
        .WrapText = True
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .Interior.ColorIndex = 50
        .BorderAround , LineStyle:=xlContinuous, Weight:=xlThick
    End With
    
    
        ques = InputBox("pick your date? (1 today, or 2 tomorrow)", "test", "1")
        If ques = "1" Then
            rng1.AutoFilter 1, Criteria1:="TRUE", Operator:=xlFilterValues
            rng1.AutoFilter 2, Criteria1:=xlFilterToday, Operator:=xlFilterDynamic
            rng2.AutoFilter 6, Criteria1:="TRUE2", Operator:=xlFilterValues
            rng1.SpecialCells(xlCellTypeVisible).Copy Destination:=rng2
        ElseIf ques = "2" Then
            rng1.AutoFilter 1, Criteria1:="TRUE", Operator:=xlFilterValues
            rng1.AutoFilter 2, Criteria1:=xlFilterTomorrow, Operator:=xlFilterDynamic
            rng2.AutoFilter 6, Criteria1:="TRUE2", Operator:=xlFilterValues
            rng1.SpecialCells(xlCellTypeVisible).Copy Destination:=rng2
        Else
            MsgBox "."
            Exit Sub
        End If
        
    
    REC_TEST.UsedRange.EntireRow.EntireColumn.AutoFit
    
    
    rng1.AutoFilter 2
    rng2.AutoFilter 5
    End Sub

    Test file added.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Macro to find print and paste
    By moi.agr in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-28-2022, 02:49 PM
  2. Macro to copy and paste lines from table in invoice and print
    By IsabelleArtMas in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-21-2021, 05:47 AM
  3. Use a Macro to Copy/Paste and then Print
    By groblerdn in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-11-2013, 08:35 AM
  4. Macro to paste and print in another application
    By punter in forum Excel General
    Replies: 1
    Last Post: 06-17-2006, 11:45 AM
  5. Replies: 2
    Last Post: 12-28-2005, 01:10 PM
  6. [SOLVED] macro to select data paste/print
    By Anthony in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-30-2005, 01:06 PM
  7. [SOLVED] macro to select data/paste/print
    By Anthony in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-29-2005, 05:06 AM

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