Hello,
I have a data set that I need to flag the records based on (4) different criteria type. One of the (4) criterias contain 2 parameters.
- Price <= 75
- Current stock 80% or less of original stock ( data set includes a column for current and original stock)
- Price decrease => $2 (data set includes a column for current and original price)
- Price between 70-80 and MTD loss =>1M
This is the formula I am currently using.
"IF [Price]=<75 OR [Current Stock]/[Original Stock]=<.8 OR [Original Price]-[Current Price]=>2 OR [Price] BETWEEN 70 AND 80 AND [MTD Loss] =>1,000,000) then "Review" else "OK"
Where is my formula going wrong? Thank you,