1、最前面加一行:
If Tables("表A").current Is Nothing then
Return
End if
2、类似这样的代码:
If Tables("表A").current("百度") = Nothing Then
应该改为:
If Tables("表A").current.IsNull("百度") Then
3、建议看看:
http://www.foxtable.com/help/topics/1516.htm