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
Rushabh MaratheRushabh Marathe 

what to make Card_Closure_Status__c mandatory for profile name=agent

OR (
$RecordType.Name = "Release",$RecordType.Name ='Digital Part Release'),
ISPICKVAL(Card_Closure_Status__c, 'None'),
IF( Associated_Credit_Card__c = 'Yes',True,False),
)
CharuDuttCharuDutt
Hii Rushabh
Try Below Validation
AND(OR (
$RecordType.Name = "Release",$RecordType.Name ='Digital Part Release'), TEXT(Associated_Credit_Card__c)='Yes', ISBLANK(TEXT(Card_Closure_Status__c)), $Profile.Name = 'Agent')

Please Mark It As Best Answer If It Helps
Thank You!