A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Dave, thanks for the suggestions. On the track of the variant parameter, how do you type check a variant object to know what it actually is.
The VBA help documentation has not been so helpful (as you said above :) )
You can use the TypeName or VarType functions, or you can test its TypeOf like this...
If TypeOf YouVariant Is "TextBox" Then
depending on how you want to structure your code.
NOTE: Please mark the message or messages (yes, you can mark more than one) that answer your question as the "Answer" so that others will know your question has been resolved.