I've created a checkbox object that I want to tie to a boolean field, IsComplete. When the box is checked, I want IsComplete to be marked "Yes", and when it is unchecked to be marked "No".
Since the trigger event for a checkbox is "click", I have to create conditional statements to check to first see whether it was checked or unchecked before it was clicked on. So, two questions:
1. When defining the conditional statement, I'll select the checkbox value from the screen, and compare it ("is equal to")... what? Should I "type in" the value? What are the values of a checkbox? "Yes" and "No", or "True" and "False"?
2. So say I've made my conditional statements for the "click" trigger event, that take the checkbox value from the screen: WIll the conditional statement look at the value of the box before it was clicked, or after?
By the way, this object-specific info should totally be in the help center/object guide!