functions to check it a worksheet exist in a workbook

T

Tang

I would like to check if a worksheet exist using excel formula, is there one
like this:
=if (Sheets("ABC") exist, "yes", "no")

regards
 
F

Frank Kabel

Hi
one way:

public function sheet_exist(sname) as boolean
dim wks as worksheet
on error resume next
set wks = activeworkbook.worksheets(sname)
on error goto 0
sheet_exist = not wks is nothing
end function
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top