如何设置宏来设置EXCEL表格中每一个SHEET加密

2025-01-07 03:53:57
推荐回答(1个)
回答1:

Sub Macro2()
For Each sh In Worksheets
sh.Protect Password:=123 '保护密码123
Next
End Sub