What is the formula to have a checkbox populated when another field is filled out?
I have a checkbox for Background Check and I need it to populate when the Background Check Submit Date field is populated. Thank you for your help!
1 respuesta
Hi @Lisa Pazienza,
You can create a formula field and add a formula like mentioned below:
IF(
NOT(ISBLANK(Background_Check_Submit_Date__c)),
true,
false
)