Currently, I have one of the following text conditions in a field (char) called next_step:
Awaiting Stock
Awaiting Delivery
Awaiting Customer info
I want to create an automated action to update the next_step field value to be what ever is currently in the next_step field to + ", Register Payment", when certain action occurs.
I've set the python expression to be
next_step = next_setp + ", Register Payment"
But I'm triggering an error saying the = symbol is an invalid syntax.
Anyone can share some lights?