If e.Row.IsNull("审批人") = False Then \'如果审批人列不为空 e.Cancel = True \'则禁止编辑End If
求助怎么将上面的代码改为:如果审批人列不为空,表中除了a列外,都禁止编辑,如果b列不为空,则a列禁止编辑, 请大侠们指教
If e.col.name <> "a"
e.Cancel = (e.Row.IsNull("审批人") = true)
End If
If e.col.name = "a"
e.Cancel = (e.Row.IsNull("b") = false)
If e.col.name <> "a" then