以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  一列中 重复的值 标红色  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=131342)

--  作者:fubblyc
--  发布时间:2019/2/23 16:51:00
--  一列中 重复的值 标红色
老师,A列 有3个重复值,

If e.Col.name = "操作账号" Then
    If e.Row.Isnull("操作账号") = False Then
        If XXXX  Then  \'这个重复的条件要怎么写呢。。
            e.Style = "重复"
        End If
    End If
End If

--  作者:有点蓝
--  发布时间:2019/2/23 17:38:00
--  
If e.Col.name = "操作账号" Then
    If e.Row.Isnull("操作账号") = False Then
        If e.table.compute("count(操作账号)","操作账号=\'" & e.Row("操作账号") & "\'") > 1  Then  \'这个重复的条件要怎么写呢。。
            e.Style = "重复"
        End If
    End If
End If

--  作者:fubblyc
--  发布时间:2019/2/25 15:22:00
--  
谢谢蓝老师,居然没想到可以用这样的!!