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
harsh chouhan 3harsh chouhan 3 

if age >18 aadhar is null and checkbox is checked then print valid. what formula will we use

Sai PraveenSai Praveen (Salesforce Developers) 
Hi Harsh,

Can you provide more details like on which object and where to print ..etc

Thanks,
 
harsh chouhan 3harsh chouhan 3
if age >18  and aadhar field is null and police verification checkbox is checked then the records get saved
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Harsh,

if all the conditions are met then only record should be saved else record should not be saved?

Is age a field?


Is this the requirement.

Thanks,
 
harsh chouhan 3harsh chouhan 3
yes age  is a field
SasidSasid
@harsh

Please try - If ( AND(Age__c > 18, ISNULL(Aadhar__c), Police_Verification__c), 'Valid', 'Invalid')