function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
lil_rangerlil_ranger 

Field Update based on checkbox

I'm trying to update a text field based off of a checkbox. 

 

If checkbox a = true then update the text field to yes

If checkbox a = false then update the text field to no

 

Any help would be greatly appreciated.

Best Answer chosen by Admin (Salesforce Developers) 
Steve :-/Steve :-/

Are you trying to do this with a Formula or a WFR? 

 

The formula would look like this:

 

IF(CheckboxField = TRUE,"Yes", "No")