Jun 06, 2019 05:45 PM
What is wrong here?
IF(AND({Tracking Number}=BLANK(),Qty!="",Commission=BLANK()),OR(AND(Upload=1,Commission=BLANK())),1)
I am still getting everywhere a 1
Please look on this screenshot
Jun 06, 2019 07:34 PM
I’m guessing you want a 1 in the field if either of the AND collections come back as true, which is why you added the OR. However, the OR is in the wrong place. It needs to surround both of the AND functions:
IF(
OR(
AND(
{Tracking Number}=BLANK(),
Qty!="",
Commission=BLANK()
),
AND(
Upload=1,
Commission=BLANK()
)
),
1
)
Does that give you the result you want?
Jun 06, 2019 07:54 PM
Something is not good: Sorry, there was a problem saving this field. Invalid formula. Please check your formula text.
Jun 06, 2019 08:50 PM
Not sure what the problem is. It works fine here:
Make sure you copied the full formula. Perhaps the closing parenthesis got chopped off during copying?
Jun 07, 2019 08:40 AM
Thank you Very much, it did work as you told me