0

Choice

In status i have some choice field, and i have another field that it is confirmed order that it is date field too. I want when choice no.4 in status then field of date show date today.

7 replies

null
    • New_Sun
    • 5 yrs ago
    • Reported - view
    • New_Sun
    • 5 yrs ago
    • Reported - view
    • blackie
    • 5 yrs ago
    • Reported - view

    maybe something like this used with  Status Trigger after update

     

    let myID=this;

    if Status = 4 then

    myID.('Your Date' := today())
    end

    • New_Sun
    • 5 yrs ago
    • Reported - view

    Dont work. 

    • Support
    • 5 yrs ago
    • Reported - view

    Please try:

     

    if text(Status) = "[4 your shown textvalue]" then

    'Your Date' := today()
    end

     

    Best, Jörg

    • New_Sun
    • 5 yrs ago
    • Reported - view

    I didbut dont work

    • New_Sun
    • 5 yrs ago
    • Reported - view

    Jorg, worked, thank you

Content aside

  • 5 yrs agoLast active
  • 7Replies
  • 1455Views