Chris Good Posted January 6, 2005 Posted January 6, 2005 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?
Ted S Posted January 6, 2005 Posted January 6, 2005 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.
stanley Posted January 6, 2005 Posted January 6, 2005 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
Recommended Posts
This topic is 7264 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now