Hi, I am trying a trigger from a Choice Combobox field but it does not work
concept := if Classification = "Concept" then
text("true")
else
text("false")
end
Any advice? Thanks
try this
concept := if text(Classification) = "Concept" then...
Works beautifully thanks
Works beautifully thanks