A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Re: debug warning
Most likely the underscore in one or both of these lines is missing:
Line 5...
"strAddress = _"
-OR-
Line 7...
"ThisWorkbook.Worksheets(Left$(strAddress, _"
Note that a space comes before the underscore.
The " _" is a line continuation character that joins a code line with the line below.
'---
Jim Cone