January 6, 200521 yr I am trying to write a script that will put a check in one value of a checkbox field. I have tried the Set Field (Orders::OrderStatus, "Paid") step and that works but it clears any other value's that have been set. Any Idea how to get around this?
January 6, 200521 yr Chris, I'm just winging it here but you might try: Set Field (Orders::OrderStatus, Orders::OrderStatus & "Paid") Something to that effect should add "Paid" to the existing set of values. You may need to enter the paragraph symbol into the equation somewhere. Perhaps just before the P or after the d in Paid.
January 6, 200521 yr Ted's right. You can also put a Case() statement in there to check if the field is empty, in which case you don't need to put a carriage return in. -Stanley
Create an account or sign in to comment