Beeps with flashing message

Zsand

New Member
Joined
Nov 13, 2002
Messages
10
Hi,

I have a large excel worksheet, before I print this worksheet I want to check the totals on three columns before it prints. If the three totals are not the same I want the system beep three time and flash the message (Check Totals) and stop the macro from printing.


Help
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
OK, well before I nod off, this is what you need to do.

Right click the sheet tab and select View Code. Copy and paste in:

Code:
Private Sub Worksheet_BeforePrint(Cancel As Boolean)
Dim i As Byte, a As Variant, b As Variant, c As Variant

a = Range("A100").Value
b = Range("B100").Value
c = Range("C100").Value

If a <> b Or a <> c Or b <> c Then
    For i = 1 To 3
        Beep
        Application.Wait Now() + TimeSerial(0, 0, 1)
    Next i
    MsgBox "Check totals - Printing cancelled"
    Cancel = True
End If
End Sub

Change the cell references for a, b and c to suit then close the code window.
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,446
Members
449,083
Latest member
Ava19

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