VBA Compare Cell Value Between and Then Print a sheet

sxhall

Board Regular
Joined
Jan 5, 2005
Messages
192
Office Version
  1. 365
Platform
  1. Windows
Hi,

Thanks for looking.

Have been puzzling over this for an hour now but cannot piece in the missing part to the below.

All I want to do is...

- Define a range starting in cell A3
- Compare the value in column A with cell Q2, greater than or equal to and compare to cell S2 less than or equal to
- If it meets the criteria then take the cell value and paste it to cell U2 to then print out another sheet which will reference this value

Code I have so far is...


Code:
Sub PrintDriverReturns()

Dim lRow As Long

With ActiveSheet

    lRow = .Cells(.Rows.Count, "B").End(xlUp).Row
    
End With


For Each i In Range("A3:A" & lRow)

    If Cells(i, "A").Value <= Range("Q2").Value And Cells(i, "A").Value >= Range("S2").Value Then
        
        Cells(i + 2, "A").Select
        Cells(i + 2, "A").Copy
        Range("U2").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Worksheets("Forms - Driver Returns").Select
        
        ActiveSheet.PrintPreview
        
        Worksheets("Found in Driver Returns").Select
        
    Else
    
    End If
    
Next

End Sub

Thanks in advance for any assistance

Steven

PS values will always be numeric starting at 1
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Give this a go.
Code:
Sub PrintDriverReturns()

    Dim lRow As Long
    Dim Cl As Range
    
    With ActiveSheet
        lRow = .Cells(.Rows.Count, "B").End(xlUp).Row
        
        For Each i In .Range("A3:A" & lRow)
        
            If Cl.Value <= .Range("Q2").Value And Cl.Value >= .Range("S2").Value Then
                .Range("U2").Value = Cl.Value
                Worksheets("Forms - Driver Returns").Select
                ActiveSheet.PrintPreview
            End If
        Next
    End With

End Sub
From your description, I think the <= & >= might be the wrong way round, but went with your code.
 
Upvote 0
Thanks Fluff,

Picked up on my signs being the wrong way round.


Give this a go.
Code:
Sub PrintDriverReturns()

    Dim lRow As Long
    Dim Cl As Range
    
    With ActiveSheet
        lRow = .Cells(.Rows.Count, "B").End(xlUp).Row
        
        For Each i In .Range("A3:A" & lRow)
        
            If Cl.Value <= .Range("Q2").Value And Cl.Value >= .Range("S2").Value Then
                .Range("U2").Value = Cl.Value
                Worksheets("Forms - Driver Returns").Select
                ActiveSheet.PrintPreview
            End If
        Next
    End With

End Sub
From your description, I think the <= & >= might be the wrong way round, but went with your code.


I went with the following as I had a few other issues my original code that I found.

Code:
Sub PrintDriverReturns()

Dim lRow As Long
Dim SRange As Range
Dim cell As Range

Application.ScreenUpdating = False

Sheets("Forms - Driver Returns").Visible = True

If Range("Q2") = "" Or Range("S2") = "" Then
    
    Range("U2").Select
        ActiveCell.FormulaR1C1 = "=SUM(RC[-4]+RC[-2])"
    Worksheets("Forms - Driver Returns").Select
    
    ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, IgnorePrintAreas:=False
    'ActiveSheet.PrintPreview
    
    Worksheets("Found in Driver Returns").Select

Else

    With ActiveSheet
    
        lRow = .Cells(.Rows.Count, "B").End(xlUp).Row
        
    End With
    
    Range("A3:A" & lRow).Select
    Set SRange = Selection
    
    For Each cell In SRange
    
        If cell.Value >= Range("Q2").Value And cell.Value <= Range("S2").Value Then
            
            cell.Select
            cell.Copy
            Range("U2").Select
            Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                :=False, Transpose:=False
            Worksheets("Forms - Driver Returns").Select
            
            ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, IgnorePrintAreas:=False
            'ActiveSheet.PrintPreview
            
            Worksheets("Found in Driver Returns").Select
            
        Else
            
        End If
        
    Next cell

End If

Sheets("Forms - Driver Returns").Visible = False

    Range("U2").Select
    Selection.ClearContents
    Range("Q2").Select

With Application

    .CommandBars("Format Object").Visible = False
    .ScreenUpdating = True
    
End With

End Sub

I will update this now as well based on your code to replace my copy and paste steps.

Thnaks for coming back to me

Steven.
 
Upvote 0

Forum statistics

Threads
1,216,122
Messages
6,128,964
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top