How do I write this line of code with two criteria? Right now it has only one....
Criteria One: FirstPaper
Criteria Two: SecondPaper

I want this line to perform one thing: to delete all the sheets except those two criteria above.

Formula: copy to clipboard
If ws.Name <> "FirstPaper" Then ws.Delete


Thanks!