Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am attempting to structure an expression to have the following conditions:
PRICE > '0'
BUYER_TYPE_CODE <> 'ADULT'
BUYER_TYPE_CODE NOT LIKE 'MP*'
BUYER_TYPE_CODE NOT LIKE 'STH*'
RETURN THE SUM OF QTY
I TRIED:
=SUM(IF(PRICE > '0' and BUYER_TYPE_CODE <> 'ADULT' and BUYER_TYPE_CODE NOT LIKE 'MP*' and BUYER_TYPE_CODE NOT LIKE 'STH*' , QTY)) but did not return the result I was expecting