以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  行列转换出错  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=145623)

--  作者:有点蓝
--  发布时间:2020/2/2 22:53:00
--  
表格有空行,数据有空值导致的,因为列名不能为空

Dim dtb As New DataTableBuilder("表B")
dtb.AddDef("姓名", Gettype(String), 32)
For Each v As String In DataTables("武汉回乡人员体温").GetValues("姓名","姓名 is not null")
    dtb.AddDef(v, Gettype(String), 32)
    output.show(v)
Next
dtb.Build()