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
Dea73Dea73 

Workflow not working

Hi All,

 

Not sure why my validation rule is not working.

Can someone let me know what i'm missing???

I'm trying to validate that when a picklist is changed to the option " feasible - progress" it is changed by a specific user.

 

ISPICKVAL( Order_Status__c ,"Feasible – In Progress") &&

ISCHANGED( Order_Status__c )  &&

$User.Id <> '00530000000ybRJ'

 

 

Thanks,

b-Forceb-Force

AND(

ISPICKVAL( Order_Status__c ,'Feasible – In Progress'),

 

ISCHANGED( Order_Status__c ) ,

 

$User.Id <> '00530000000ybRJ'

)

 

 

try with this formula , and make sure your validation rule  is active

 

Thanks,

bForce

Dea73Dea73

Thanks bforce,

 

I have tried that to and it doesn't work. It will still let me change the value to Feasible - In Progress and the validation rule is active.

I have no clue why it's not working.

 

And there is no other validation rule for the particular object, thst could be counter acting.

b-Forceb-Force

As per my understanding you are trying to implement some thing like below 

 

" Only user 00530000000ybRJ  will able to change order status to Feasible – In Progress, rest all user will not able to do this "

if this is correct , then specified validation rule should work.

 

 

Check points :

Make sure Feasible – In Progress spelled correctly, (use copy paste )

 

If is thereany other understanding please specify.

 

Also monitor does specific VR is firing by monitoring debug log, directly search by validation rule Id , what does it evaluate

 

 

Hope this will help you

 

Thanks ,

bForce