I’m trying to use this formula to tell me if an item is in our inventory or not based on the delivery date. If the delivery date is before today, it’s no longer in our stock.
IF(IS_AFTER({Delivery Date}, TODAY( )), “Yes”, “No”))
This formula is givin...