Skip to main content

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
  1. 22 feb 2023, 18:53

    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

    )

0/9000