Announcement

Collapse
No announcement yet.

Automatic Field Update

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Automatic Field Update

    Hello,

    I have written the following formulas in the formula part of the entity, there is no problem when I change the new record and record but the field does not update automatically when time passes. What could be the reason? Thanks.

    ifThen(entity\isAttributeChanged('balangTarihi') && balangTarihi > datetime\today(),
    aktifPasif = 'Pasif');
    ifThen(entity\isNew() && balangTarihi > datetime\today(),
    aktifPasif = 'Pasif');
    ifThen(entity\isNew() && balangTarihi <= datetime\today(),
    aktifPasif = 'Aktif');
    ifThen(entity\isAttributeChanged('balangTarihi') && balangTarihi <= datetime\today(),
    aktifPasif = 'Aktif');
Working...
X