You need to sign in to do that
Don't have an account?

Update Formula with condition needed .
I have field called 'Length MT' (number type). I would like to update this field by a value from my another field 'MAIN ASSY HOSE LENGTH' (number type), but if another field 'Hose Accessories' name contain 'None', formula should use '0.00' value.
Is it possible to create above working formula for updating my custom field?
Thank you for any help
Is it possible to create above working formula for updating my custom field?
Thank you for any help
if(AND(Length(MAIN ASSY HOSE LENGTH)>0 ,Hose Accessories = 'NONE') , 0.00 , Length(MAIN ASSY HOSE LENGTH))
if Hose Accessories is picklist field then use ISPICKVAL(Hose Accessories) , 'None' Instead of Hose Accessories = 'NONE'
Thanks for reply,
Please see below errors I'm getting
LENGTH_MT__c - this is a field where I woudl like to copy my value with condition. It should be fields label instead?
Thanks