After adding the below conditon, my row update and table update stop working. The open app does work with the condition or without.
If I remove the condition, it works again.
What am I doing wrong?
Please help!!!
Thank you,
Richard
After adding the below conditon, my row update and table update stop working. The open app does work with the condition or without.
If I remove the condition, it works again.
What am I doing wrong?
Please help!!!
Thank you,
Richard
You shouldn’t have quotes around that expression when comparing Boolean values. If you want the quotes, which effectively turns it into a string, then you need to add quotes around the false keyword as well.
Additionally, the i
is lowercase on your intrntlShip column name. Typically, those are capitalized (the I in this case); sometimes that matters. Make sure it matches the column name in the data view.
It’s also best to turn on debugging and trace these issues in Dev Tools. It will show you how it evaluates the expression.