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
mahidhar Reddymahidhar Reddy 

i have three record types in third record type make one field required how to do it through validationrules

it is not working..i need to restrict ownership field requird
and(( $RecordType.Id ='0127F000000RqjzQAC'),
     (ISBLANK(text( Ownership ))) 
   )
Best Answer chosen by mahidhar Reddy
Nandigam RajeshNandigam Rajesh
Hi mahi,
Thank you for the feedback. Try to mark as best answer for the people's use.

All Answers

Nandigam RajeshNandigam Rajesh
Hi Mahi,
Hope this may helps you:

AND($RecordType.Name = "Something Something...",
ISBLANK(The_Required_Field));

Regards
Rajesh
Salesforce| Technician
mahidhar Reddymahidhar Reddy
tanq raj...it's working..
Nandigam RajeshNandigam Rajesh
Hi mahi,
Thank you for the feedback. Try to mark as best answer for the people's use.
This was selected as the best answer