I was working with a vba code which remove all the rows which dont have word \"Statement No\" in it from all available worksheets. But anyhow i want it to skip the first wor
If the sheet name is always going to be the same then you could use this ..
If sh.Name <> "Sheet 1" Then ' Or whatever the sheet is called .. more code End If