Oct 31, 2023 08:35 AM
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?
Solved! Go to Solution.
Oct 31, 2023 10:18 AM - edited Oct 31, 2023 12:06 PM
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)
Oct 31, 2023 10:18 AM - edited Oct 31, 2023 12:06 PM
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)
Oct 31, 2023 11:06 AM
Thanks for the reply, but now I don't get anything in the field.
Oct 31, 2023 12:07 PM
Single parenthesis was out of place. I edited the response, should work now.