以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 判断数据是否存在? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=194230) |
-- 作者:1234567 -- 发布时间:2024/11/21 8:28:00 -- 判断数据是否存在? 如何判断是否存在【第一列】数据为"A"的行 |
-- 作者:y2287958 -- 发布时间:2024/11/21 8:40:00 -- Find或Select均可 |
-- 作者:有点蓝 -- 发布时间:2024/11/21 8:53:00 -- http://www.foxtable.com/webhelp/topics/0396.htm |
-- 作者:1234567 -- 发布时间:2024/11/21 8:56:00 -- 如何查找第一列数据重复的行,并把后面的重复行删除? |
-- 作者:有点蓝 -- 发布时间:2024/11/21 9:01:00 -- http://www.foxtable.com/webhelp/topics/1478.htm 显示冗余值全部删除
|
-- 作者:1234567 -- 发布时间:2024/11/21 9:13:00 --
[此贴子已经被作者于2024/11/21 10:23:47编辑过]
|
-- 作者:1234567 -- 发布时间:2024/11/21 12:25:00 -- 如何把下面的代码改成删除冗余值
Dim idx As String = "-1," If pdr IsNot Nothing Then Tables("询价表").filter = "_Identify in (" & idx.trim(",") & ") and 客户 is not null and 工序 is not null" |
-- 作者:有点蓝 -- 发布时间:2024/11/21 15:58:00 -- Tables("询价表").filter = "客户 is not null and 工序 is not null" Tables("询价表").sort = "客户,工序" for i as integer = Tables("询价表").rows.count - 1 to 1 step -1 if Tables("询价表").rows(i)("客户") = Tables("询价表").rows(i-1)("客户") andalso Tables("询价表").rows(i)("工序") = Tables("询价表").rows(i-1)("工序") then Tables("询价表").rows(i).delete end if next
|