以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何新建一个列提取原有列的部分内容 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=175393) |
-- 作者:comfortfoot -- 发布时间:2022/3/3 6:43:00 -- 如何新建一个列提取原有列的部分内容 比如说原来有一列“姓名” 现在想新建一个列提取“姓名”列的首字 试过 datacolchanged If e.DataCol.name = "na" Then e.DataRow("首字") = e.DataRow("na").substring(0,1) End If 但是这样需要每列点进去修改点空格才行 |
-- 作者:有点蓝 -- 发布时间:2022/3/3 9:29:00 -- 按菜单的重置列即可。参考:http://www.foxtable.com/webhelp/topics/1469.htm |
-- 作者:comfortfoot -- 发布时间:2022/3/3 23:21:00 -- 哦哦 哦,,谢谢大神 |