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
JAY_PJAY_P 

Validate 111urgent

I have two field :::
1. model number (field type :::test) = pc896 (selected value)
2.pc/Dc Exception (field type: checlbox) = marked (set the velue)
i want to create one validation rule that if i entered the model number = pc896 for that checkbox will automatically marked..
Please help me developer
 

 

Best Answer chosen by JAY_P
Alexander TsitsuraAlexander Tsitsura
Hi Mike,

As i understund, you need create workflow rule, with criterial "model number = pc896" and action - field update(set checkbox)

As a common practice, if your question is answered, please choose 1 best answer. 
But you can give every answer a thumb up if that answer is helpful to you.

Thanks,
Alex

All Answers

Alexander TsitsuraAlexander Tsitsura
Hi Mike,

As i understund, you need create workflow rule, with criterial "model number = pc896" and action - field update(set checkbox)

As a common practice, if your question is answered, please choose 1 best answer. 
But you can give every answer a thumb up if that answer is helpful to you.

Thanks,
Alex
This was selected as the best answer
Jithin Krishnan 2Jithin Krishnan 2
Hi Mike,
You can't create a validation rule for that. A validation rule only validates the value as per our need. Create a formula field 'pc_dc_exception___c' with return type as checkbox. You can use the below formula:
if(model_number__c='pc896',true,false)
The formula field will be automatically checked if the model_number__c field has the value 'pc896'
Please let me know if you face any issues.
Thanks.