Dec 6, 2003 #1 samato Technical User Apr 26, 2003 37 US Excel 2000 - If I grab a group of sheets, can I protect them all without having to protect each one?
Dec 7, 2003 #2 bronc Instructor Aug 28, 2003 145 GB Protect only seems to apply to a sheet and not to a collection of sheets so looks like the next best thing is: Dim sh As Worksheet For Each sh In Worksheets(Array("Sheet1", "Sheet3") sh.Protect Next sh Upvote 0 Downvote
Protect only seems to apply to a sheet and not to a collection of sheets so looks like the next best thing is: Dim sh As Worksheet For Each sh In Worksheets(Array("Sheet1", "Sheet3") sh.Protect Next sh