Forum Discussion

mansch's avatar
mansch
New Member
4 years ago
Solved

Filter similarities

Hi all   There is a list of 4000 dublicated ABC entries assigned to multiple owners. some have given feedback, others not. These ABC entries should get a status by the owner "open", "reviewed" or "...
  • Anonymous's avatar
    Anonymous
    4 years ago

    HI mansch,

    You can try to use the following calculated column formula to check the different row count based on the current 'field 1'', 'field 2' group to setting record flags:

    Flag =
    VAR check =
        CALCULATETABLE (
            COUNTROWS ( VALUES ( T[3] ) ),
            FILTER (
                T,
                T[1] = EARLIER ( T[1] )
                    && OR ( T[2] = EARLIER ( T[2] ), T[2] = "reviewed" )
            )
        )
    RETURN
        IF ( check > 1, "Y", "N" )

    Regards,

    Xiaoxin Sheng