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
Simran ThakurSimran Thakur 

Bank account details cannot be null. can anyone can help me out in these validation rule

Andrew GAndrew G

Validation rule;
ISBLANK(Bank_Account__c)

if multiple fields

OR( 
    ISBLANK(Bank_Account__c),
    ISBLANK(Bank_Name__c),
    ISBLANK(Bank_BSB__c)
)

hth

Andrew