我最近发现程序复制代码到代码编辑器中始终复制不完整,如果点修改,会擦去先的公式,使用很不方便,请大家指点一下我是哪里没有设置对吗?还是程序更新后的问题?我更新的是最新版。如复制以下代码到代码编辑器中
If e.DataCol.Name = "等级"
Then
If e.OldValue = "A"
Then
'如果原来的等级是A
If e.NewValue = "D"
Then
'且新的等级为D
e.Cancel =
True
'则取消更改
End
If
End
If
End
If
出现以下不完整现象:
If e.DataCol.Name = "等级" Then
If e.OldValue = "A" Then '如果原来的等级是A
If e.NewValue = "D" Then '且新的等级为D
e.Cancel = True '则取消更改
End I
如果输入或修改公式:
If e.DataCol.Name = "优秀" Then If e.OldValue = "A" Then '如果原来的等级是A
If e.NewValue = "D" Then '且新的等级为D
e.Cancel = True '则取消更改
End I
以上就是代码编辑器出问题,急需解决,谢谢大家!