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
venkat bojjavenkat bojja 

I have Check_Box__c field whichshould enable when the opportunity stage is Contract Loaded

Hi Team,
I have a requirement...
I have Check_Box__c field on opportunity which should editable only  the opportunity stage is Contract Loaded.
How I can achieve this requirement with validation rule or any configuration process...
Thanks in advance
Thanks
Venkat.
Best Answer chosen by venkat bojja
Sai PraveenSai Praveen (Salesforce Developers) 
HI,

Can you try with validation rule as below.
 
AND( Not(ISPICKVAL( StageName , 'Contract Loaded')) , ischanged( checlk__c ) )

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,

All Answers

Sai PraveenSai Praveen (Salesforce Developers) 
HI,

Can you try with validation rule as below.
 
AND( Not(ISPICKVAL( StageName , 'Contract Loaded')) , ischanged( checlk__c ) )

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,
This was selected as the best answer
venkat bojjavenkat bojja
Hi Sai,
Thanks for you quick reply.
I have another  requirement.
I need to write formula field...

I have a check_box__c field 
1) check_box__c checked or uncheked +  Type__c != 'ABC' we need to make the Discount__c field blank.

2)  check_box__c checked + Type__c = 'ABC' then we need to do like below
 
Model_Type__cDiscount
Model 11000
Model 22000
Model 33000
Model 44000

Please help me on this. Thanks in Advance...
Thanks 
Venkat.