咩有密码 有时候使用Excel打开某些表格时,我们会发现这份表格受了保护,我们无法进行修改字体等操作,非常不方便,那么怎么才能解除受保护的Excel表格呢,下面我们就来说一说关于如何取消excel保护状态?我们一起去了解并探讨一下这个问题吧!
如何取消excel保护状态
咩有密码 有时候使用Excel打开某些表格时,我们会发现这份表格受了保护,我们无法进行修改字体等操作,非常不方便,那么怎么才能解除受保护的Excel表格呢
Sub DeletePW()
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, AllowFiltering:=True
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, AllowFiltering:=True
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, AllowFiltering:=True
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, AllowFiltering:=True
ActiveSheet.Unprotect
End Sub
,