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
YashhYashh 

Record type formula field

want formula field on record type that if my Record type is Auto insurance and auto finance so check box is disabled other wise enabled.
Best Answer chosen by Yashh
Suraj Tripathi 47Suraj Tripathi 47
Hi Yash,
Greetings!

Please use this formula,
IF(
    OR(
        RecordType.Name ='Auto insurance',
        RecordType.Name ='Auto Finance'
    ),
    true,
    false
)

If you find your Solution then mark this as the best answer. 

Thank you!

Regards,
Suraj Tripathi

All Answers

CharuDuttCharuDutt
Hii Yash
Try Below Formula
IF(OR( RecordType.Name ='Auto insurance',RecordType.Name ='Auto Finance') ,true,false)
PleasePlease Mark it As Best Answer If It Helps
Thank You!
Maharajan CMaharajan C
Small change in the above formula:
 
IF(OR( RecordType.Name ='Auto insurance',RecordType.Name ='Auto Finance') ,false,true)

Thanks,
Maharajan.C

 
Suraj Tripathi 47Suraj Tripathi 47
Hi Yash,
Greetings!

Please use this formula,
IF(
    OR(
        RecordType.Name ='Auto insurance',
        RecordType.Name ='Auto Finance'
    ),
    true,
    false
)

If you find your Solution then mark this as the best answer. 

Thank you!

Regards,
Suraj Tripathi
This was selected as the best answer