Hi tywlam,
See the attached file which includes the following Macros. This should help you get started. Please feel free to ask if you have additional problems or questions.
In an ordinary code module such as Module1:
FYI (For Your Information):
It is a best practice to declare all variables. If you misspell a variable in your code, VBA will silently assume it is a Variant variable and go on executing with no clue to you that you have a bug. Go to the VBA development window, click Tools, Options, and check "Require Variable Declaration." This will insert the following line at the top of all new modules:
This option requires all variables to be declared and will give a compiler error for undeclared variables.
Lewis
Bookmarks