I have 2 pieces of criteria that needs to be met for and a formula to return a date.
1) Lane must equal 5
2) Dollar value greater than $100,000
3) Add 90 days to my date field
Populate a new column with a date +90 days if criteria is met. Here's what I have...
=IF(AND(LANE@row = "5", [Total Projected]@row > "100000", [Actual Realized Date (Lane 5)]@row + 90))
It is returning dates where Total Projected is less than "100000"??