以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]重复记录问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=152667) |
-- 作者:武圣 -- 发布时间:2020/7/17 17:25:00 -- [求助]重复记录问题 一个修车表,车号有多条记录相同,只有维修时间不同,我想留下时间最近的一条,删除其他条记录,代码该怎么写? |
-- 作者:有点蓝 -- 发布时间:2020/7/17 17:31:00 -- tables("修车表").sort = "车号,日期" for i as integer = tables("修车表").rows.count - 2 to 0 step -1 if tables("修车表").rows(i)("车号") = tables("修车表").rows(i+1)("车号") then tables("修车表").rows(i).delete endif next
|