
2. I want to lock these two fields until, Company information is filled.
How do I got about doing this?
12 answers
Okay try this: AND(
ISBLANK(CompanyInformation__c)
OR(
NOT(ISBLANK(Setup_Fee__c)),
NOT(ISBLANK(Annual_Fee__c)),
ISCHANGED(Setup_Fee__c),
ISCHANGED(Annual_Fee__c),
)
)