You need to sign in to do that
Don't have an account?
Umair Mohammad 10
Need assistance, please
Urggh, keep getting error.
AND( $UserRole.Name <> 'System Administrator', $Setup.Migration_Admin__c.AdminId__c <> $User.Id, CASE( RecordType.Name , 'Rental', 1, 'Retail', 1, 'Corporate/System Help', 1, 'Customer Experience-Quiq', 1, 'Custom' 0 ) = 1, OR( AND( TEXT(Status) = 'Solved', OR( ISBLANK(TEXT(tb_Type__c)), ISBLANK(TEXT(tb_Category__c)) ) )I keep getting an error, whcih is attached in this post.
Need assistance, please
try with below.
If this helps, Please mark it as best answer.
Thanks!!
Please try this code:
AND(
$UserRole.Name <> 'System Administrator',
$Setup.Migration_Admin__c.AdminId__c <> $User.Id,
CASE( RecordType.Name ,
'Rental', 1,
'Retail', 1,
'Corporate/System Help', 1,
'Customer Experience-Quiq', 1,
'Custom',
0 ) = 1,
OR(
AND(
TEXT(Status) = 'Solved',
OR(
ISBLANK(TEXT(tb_Type__c)),
ISBLANK(TEXT(tb_Category__c))
)
)
))
Make sure there are no missing parentheses or quotes in the formula
Make sure that each case statement has a value specified, even if it's just 0
Check that each logical operator (AND, OR, etc.) has the correct number of arguments.