J
jlclyde
Is there a way to do the For Each sheet and exclude sheets to have it
done to at the same time?
Thanks,
Jay
done to at the same time?
Thanks,
Jay
dim wks as worksheet
for each wks in activeworkbook.worksheets
select case lcase(wks.name)
case is = "not this one", "or this one", "and not this"
'do nothing
case else
'do the real work
msgbox wks.name
end select
next wks
Make sure you type the names of the worksheets in lower case.