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
-
-
-
maybe something like this used with Status Trigger after update
let myID=this;
if Status = 4 then
myID.('Your Date' := today())
end
-
Dont work.
-
Please try:
if text(Status) = "[4 your shown textvalue]" then
'Your Date' := today()
end
Best, Jörg
-
I didbut dont work
-
Jorg, worked, thank you
Content aside
- 6 yrs agoLast active
- 7Replies
- 1459Views