STARTSWITH+ EVINTANDO ENTRADA DUPLICADA

Bom dia! Estou tentando usar a Função "STARTSWITH([Gaiola],"GAI-"), porém, eu queria combinar outra formula para evitar entrada duplicadas, alguém poderia me dar sugestões?

Solved Solved
0 1 52
1 ACCEPTED SOLUTION

Generally , you could combine the duplicate detecting expression with STARTSWITH(), something like 

AND(STARTSWITH([Cage],"GAI-") , 

            ISBLANK(
                               FILTER(
                                              "Table Name",
                                               ([_THIS] = [Cage])
                                               )
                                               - LIST([_THISROW])
                                  )

                   )

The suggested expression for avoiding duplicates is in the article below at the end.

List expressions - AppSheet Help

 

View solution in original post

1 REPLY 1

Generally , you could combine the duplicate detecting expression with STARTSWITH(), something like 

AND(STARTSWITH([Cage],"GAI-") , 

            ISBLANK(
                               FILTER(
                                              "Table Name",
                                               ([_THIS] = [Cage])
                                               )
                                               - LIST([_THISROW])
                                  )

                   )

The suggested expression for avoiding duplicates is in the article below at the end.

List expressions - AppSheet Help

 

Top Labels in this Space