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
raji devi 1raji devi 1 

Validation Rule to Make Picklist(it has 3 values) Mandatory When a Checkbox Value is "True"

Hi All,
I have a senariou like this, i have  a picklist and a Checkbox  (both custom field). when we select checkbox true then i need to do picklist mandatory?
Please help me.

Thanks,
Rji
Best Answer chosen by raji devi 1
ManojSankaranManojSankaran

Hi raji,

Below is the validation rule that you can make use of. If this works kindly mark is as answer.

Checkbox__c  == True && ISBLANK(TEXT(PickList__c))



Thanks

Manoj S

All Answers

ManojSankaranManojSankaran

Hi raji,

Below is the validation rule that you can make use of. If this works kindly mark is as answer.

Checkbox__c  == True && ISBLANK(TEXT(PickList__c))



Thanks

Manoj S

This was selected as the best answer
raji devi 1raji devi 1
Hi Manoj,
Thanks alot it works
When we uncheck the checkbox it allow to select the picklist value  and saving the record , But we have to restric  that one also?
(when we select picklist value we need to show select check box)
Help me to do build logic for this?
Thanks ,
Raji