Saturday, December 13, 2008

Clear a Worksheet

Want to clear your current worksheet?  Use this:

'Select the whole spreadsheet
Cells.Select
'Delete Everything
Selection.ClearContents
'Make Cell A1 the Currently Selected Cell
Range("A1").Select

Quick Tip for Viewing Excel Macro's

Want to quickly view your Excel Macro's?  Click ALT-F11.  This will pull up the Microsoft Visual Basic Editor with all of your current workbooks' macros.  Quick, simple access to your macros!

Time Math in Excel

You can use the TIME() function to add or subtract hours, minutes or seconds in Excel.  The TIME function takes 3 parameters; HOURS, MINUTES...