Need help with the following simple line of code. It runs the macro perfectly for all sheets other than the one stated in the following line:
  
If Worksheet.Name <> "Sheet1" Then
But I need it to exclude more than on sheet, e.g:

  
If Worksheet.Name <> "Sheet1" or "Sheet2" or "Sheet3" etc......... Then
The code is running in a workbook with approx 200 sheets! And the code needs to search through most of them. Which is why I need to specify the ones I dont need searched as apposed to the ones that do.
But I cant get it to work, all help much appreciated.

Thanks