我正在尝试使用下面的代码强制单元格采用大写值,该值有效。
If Intersect(Target, Range("B9", "F10")) Is Nothing Then Exit Sub
Application.EnableEvents = False
ActiveSheet.Unprotect Password:=""
Target = UCase(Target)
Application.EnableEvents = True
ActiveSheet.Protect Password:=""
但是,当单元格的内容被删除(可能需要)时,我收到以下错误“运行时错误'13':类型不匹配”
如果您能对此有所了解,那就太好了!