Check cell value before printing

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,233
Office Version
  1. 2007
Platform
  1. Windows
Hi,

I would like my code to check for a value in cell N18 before printing.
No value then do not print.
If there is a value then continue to print.

The code in use is shown below.
I leave the cell empty.
I see the msgbox.
I click on OK
Printing then continues.

What did i miss thanks.

Code:
Private Sub Print_One_Invoice_Click()


If Range("N18") = "" Then
    MsgBox ("PLEASE SELCT A PAYMENT TYPE "), vbCritical


    Else
    End If
ActiveWindow.SelectedSheets.PrintOut Copies:=1
End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Maybe...
Code:
    If Range("N18") = "" Then
        MsgBox ("PLEASE SELCT A PAYMENT TYPE "), vbCritical


    Else
        ActiveWindow.SelectedSheets.PrintOut Copies:=1
    End If
 
Upvote 0
Try:
Code:
Private Sub Print_One_Invoice_Click()
    If Range("N18") = "" Then
        MsgBox ("PLEASE SELCT A PAYMENT TYPE "), vbCritical
    Else
        ActiveWindow.SelectedSheets.PrintOut Copies:=1
    End If
End Sub
 
Last edited:
Upvote 0
Try:
Code:
Private Sub Print_One_Invoice_Click()
    If Range("N18") = "" Then
        MsgBox ("PLEASE SELCT A PAYMENT TYPE "), vbCritical
    Else
        ActiveWindow.SelectedSheets.PrintOut Copies:=1
    End If
End Sub


This worked for me thanks.
 
Upvote 0
You are very welcome. :) I later noticed it was the same as what MARK858 had suggested.
 
Upvote 0
Yes that is true.

Thanks both of you for the input.
 
Upvote 0

Forum statistics

Threads
1,215,523
Messages
6,125,318
Members
449,218
Latest member
Excel Master

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