Valores sequenciais

Bom dia!

Tenho uma coluna que preciso que os valores dela seja sequencial assim que um novo registro é cadastrado.
Exemplo.
Nome, Numero
Maria, 1
João, 2
Pedro, 3
Só que a numeração tem que ser de forma automática assim que chega um novo registro

There’s a lot of workaround solutions to do this, but due to the way glide works, I don’t think any of them are guaranteed to work all of the time…especially if you have two users adding rows at the same time. Because of that, I usually avoid trying to get sequential numbers and just use unique IDs, or row IDs.

Currently, the only 100% reliable way to assign sequential numbers is to use a script in a google sheet. Unless you feel confident enough that two users wouldn’t ever create two rows around the same time. The problem is that one user might submit something and then another user submits something before the first user’s data synchrizes to the second user’s local device database. The local device is what would have to assign the next number, but if the data is not synchronized, then each device might assign the same number.

What we really need is something that works like row IDs, but with sequential numbers instead. Something that’s handled server side instead of on the device. Devices cache a local copy of the database, so it’s seni-disconnected from the server, except when data synchronizes.

3 Likes

a minha logica que estava tentando era: Se valor atual está vazio, então registro atual= valor anterior mais 1.

Vão fazer na mão mesmo…à medida que for entrando novos registros vou atualizando diretamente na planilha.

Mas mais uma vez muito obrigado!
Já avancei muito nesse aplicativo e pretendo na próxima semana mudar para PRO, ajustar tudo e colocar pra funcionar .

Esse aplicativo vai fazer muitas crianças receberem presentes no natal.