"表A"中有一个字符列"产品",一个表达式列“总金额”:
if tables("表A").col(0).IsString Then 'IsString判断是否为字符
messagebox.show("字符列")
endif
if tables("表A").col(1). ???? Then
messagebox.show("表达式列")
endif
以上问号部分如何写才能判断列是否为表达式列?
http://www.foxtable.com/webhelp/topics/0417.htm
if tables("表A").col(1).datacol.Expression > "" Then
messagebox.show("表达式列")
endif