I'm trying to get two conditons from two fields that contain certain text that if True produces a duration value. I can get it to work work one condition but when I add the second it will not work. Can someone see what I'm doing wrong?
I'm trying to get two conditons from two fields that contain certain text that if True produces a duration value. I can get it to work work one condition but when I add the second it will not work. Can someone see what I'm doing wrong?
I believe you are using the AND() function incorrectly. You do not need to call it twice, you just need to put both conditions within the function. (ie. AND(Condition 1, Condition 2))
This should work:
IF(AND(FIND("ABC",Origin), FIND("New",{Lane class})),3600,0)
Thanks for the reply, but now I don't get anything in the field.
Thanks for the reply, but now I don't get anything in the field.
Single parenthesis was out of place. I edited the response, should work now.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.