Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
AND( $RecordType.Name = "The RecType Name", ISBLANK(TEXT(Client_Follow_up_Required__c)), ISPICKVAL(Status, "Closed"))
AND( $RecordType.Id = "012600000000ldi", ISBLANK(TEXT(Client_Follow_up_Required__c)), ISPICKVAL(Status, "Closed"))
You can do this in two ways.
1st Approach: 2nd Approach: Hope this helps.
Kindly mark this as solved if the reply was helpful.
Thanks,
Nagendra
and(( $RecordType.Id ='0127F000000RqjzQAC'),
(ISBLANK(text( Ownership )))
)
Please try this
AND($RecordType.Id="0126F000001uQOO", ISBLANK( field name ))
If the required field is "text" field use ISBLANK,if the field is "number" field use ISNULL.
Thanks
Jega
Sweet Potato Tec