以文本方式查看主题
- Foxtable(狐表) (http://foxtable.com/bbs/index.asp)
-- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2)
---- [推荐]条件清除表中单元格内容 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=61251)
|
-- 作者:wumingrong1
-- 发布时间:2014/12/9 19:05:00
-- [推荐]条件清除表中单元格内容
清除 表A 中 “序号” 列 和 “业务名称” 列 中的内容;条件是“板件名称” 列 不为空 ; 换句话说就是:如果 表A 中的 “板件名称” 列 不为空 ,那么清空符合该条件的行的“序号”和“业务名称”单元格的内容。命令该怎么写?
|
-- 作者:有点甜
-- 发布时间:2014/12/9 19:08:00
--
DataTables("表A").Replace("序号", nothing, "板件名称 is not null")
DataTables("表A").Replace("业务名称", nothing, "板件名称 is not null")
|
-- 作者:wumingrong1
-- 发布时间:2014/12/9 19:18:00
--
此主题相关图片如下:360截图20141209191906281.jpg
|
-- 作者:有点甜
-- 发布时间:2014/12/9 19:36:00
--
DataTables("表A").Replacefor("序号", Nothing, "板件名称 is not null")
DataTables("表A").Replacefor("业务名称", Nothing, "板件名称 is not null")
|