Synchronizing Sheets in a Workbook
A VBA subroutine that forces all sheets in workbook to have the same
range selection and upper left cell as the active sheet.
Does a Worksheet or Workbook Have Code?
Excel 97 custom functions to determine whether the code module in a particular workbook or
worksheet contains any VBA code.
Determining the last non-empty cell in a column or row:
Two useful VBA functions. LASTINCOLUMN returns the contents of the last non-empty cell in
a column; LASTINROW returns the contents of the last non-empty cell in a row.
Creating a Worksheet Map:
A useful utility that creates a map for a worksheet. The map color-codes each cell by type
(text, number, or formula).
Controlling User Scrolling:
How to hide rows and columns to prevent users from scrolling around unused areas of a
worksheet. The technique also solves a problem that may cause the worksheet to scroll
completely off the screen.
Naming Techniques:
Explains some interesting and useful techniques for creating names in your workbook.
Identifying Unique Values in an Array or Range:
a VBA function that accepts either a worksheet range object or a VBA array. The function
returns either (a) a variant array that consists of just the unique elements in the input
array or range, or (b) a single value - the number of unique elements in the input array
or range.