Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我似乎无法解决这个问题:
在我锁定一系列单元格 A1:U1 (并且所有其他单元格都被解锁)然后我保护工作表之后 - 工作表中的 VBA 似乎不再工作 - 有什么办法解决这个问题吗?
谢谢,基兰
如果 VBA 更改了您已锁定的单元格,则您需要更新 VBA 以在运行其余代码之前解锁工作表。然后通过锁定工作表来完成 Sub。
'Add to beginning of the Sub Sheets("worksheet_name").Unprotect Password:="password" 'Add to end of the Sub Sheets("worksheet_name").Protect Password:="password"