
Announcements
Bom dia
[Aplicativo de entrada e saída de veículos]
Tenho um formulário que tem um campo de data que usa a fórmula Now() para pegar a data atual e inserir no registro e está funcionando normalmente. Mas quando edito o registro ele pega novamente a data atual e substitui no registro, eu queria manter a data que já foi inserida, só usar o Now() quando se tratar de novo registro.
Ou seja, quero alterar todos os campos menos esse.
For the default property, I would have
If(IsBlank(Parent.Default); Now(); Parent.Default)
(I used ; instead of , as I assume your editor is using location-specific Power Apps Studio formula)
This means that if there is already a value it will use the existing value, otherwise it will use Now()