0
Trigger after open problem
I'm trying to do simple switch, but it looks like i cannot select database...
select("Influencers") -----> without this i got "Field not found", but with i got an error of "identifier exepted"
Status := if To > today() or To = today() then
true
else
false
end;
end
5 replies
-
OK i solved it by myself ;)
select'Influencers'.Status:= if To > today() or To = today() then
true
else
false
end -
Congrats on finding the solution.
You can also write it like this:
select'Influencers'.Status:= if To >= today() then true else false end
Content aside
- 1 yr agoLast active
- 5Replies
- 54Views
-
3
Following