I have a column where a date will be entered. Based on that date in another column, I want to state "Pending" if the date is over 30 days past the original entry date.
=IF([DeliveryDate]@row > TODAY(+30), "Pending")
I'm not getting errors with this, however, the text "Pending" is not displaying when the DeliveryDate is over the 30 day mark.
Any direction is appreciated.