Hi
Does anyone know what syntax we would have to use on a Condition on an event to check starts with?
I have tried "{TableName.Field.startsWith(“value”)} and "{TableName.Field} == “value%”, none seem to work.
Hi
Does anyone know what syntax we would have to use on a Condition on an event to check starts with?
I have tried "{TableName.Field.startsWith(“value”)} and "{TableName.Field} == “value%”, none seem to work.
Managed to figure it out, following works:
“{TableName.Field}”.startsWith(“value”)