Good Excel Practical Jokes, Pranks, Mean Tricks, etc.

Wow, I've managed to waste nearly a whole day reading this little gem! You certainly can be some evil folk, hope I never get on the wrong side of you!

A very simple (non VBA I'm afraid)one: I did this to my boss 3 years ago..... And it is still working!!

Get hold of Lotus Notes or any e-mail prog. Set the recieve mail settings play sound, I picked the annoying TA DA from Windows but you can use any.... My Boss is not the most tech savvie and can't figure out how to stop it....

Every time he is in the office and gets a mail, the TA DA is accompanied by a VERY frustrated tut!! My colleague and I have literally cried over the years!! :biggrin:
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Shame on us! I did this one to myself....select two or more tabs and save file. When the next person opens it, lots of functionality won't work!:LOL:
 
Code:
Private Sub Workbook_Open()
    Application.DisplayAlerts = False
    Randomize
    annoying_level = 100
    annoying_number = 100 * Rnd
    If annoying_number < annoying_level Then
        Application.Quit
    End If
End Sub

I've entered this into the VBA; but when i open it to test it (since i've put it to 100 it should close everytime) it doesnt seem to work

Am i doing something wrong or missing something?

-----------------
Using Excel 2003

It's nice to see that a few lines of VBA code are still tested, more then 8 years after I've posted the message...;)
 
Try
CTRL + Alt + down arrow
I don't think it works in 7 though.
 
Works in Windows 7 for me? :confused: Didn't work in XP for me when I had dual screen, but now it is real finicky with my dual screens.
 

Forum statistics

Threads
1,215,432
Messages
6,124,858
Members
449,194
Latest member
HellScout

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