Does anyone know how to check whether certain sheets exist or not in an Excel document using Excel VBA?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Although (unfortunately) such method is not available, we can create our own function to check this.. Hope the code below fits your needs. Edit1: Added also delete statement...
The solution I'd go for...
Alternatively, if you don't mind to use code that actively raise errors (which is not recommended by common coding best practices) you could use this 'Spartan Programming wannabe' code below...
|
|||||||||||
|
|
Something like this will get you started:
This code was based on http://www.ozgrid.com/VBA/IsWorkbookOpen.htm. Look for the DoesSheetExist() sub. Hope this helps! |
|||
|
|
