以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  怎么判定是公式列?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=189251)

--  作者:puma
--  发布时间:2023/11/20 10:34:00
--  怎么判定是公式列?
怎么判定col 是公式列,我是通过手工标记 B+列名,删选B开头的列是公式列,有其他方法吗?

For Each a As DataCol In dt.DataCols
        \'公式列退出循环
        Dim str As String = a.name.SubString(0, 1)
        \'output.show(str)
        If str="B"  Then
            output.show(a.name)
            Continue For
        End If
next

--  作者:有点蓝
--  发布时间:2023/11/20 10:42:00
--  
http://www.foxtable.com/webhelp/topics/0417.htm

if a.Expression > "" then
是表达式列