Hi there!
I have the following columns: Actual Invoice Date, Due Date, Invoice Status and, Days Past Due.
First, I'd like to have the Invoice Status display SENT if there is a date present the Invoice Date column and then have it display PAST DUE if the date in the Due Date column is greater than today's date.
I know these two statement work, but don't know how to combine them:
=IF(OR(ISDATE([Actual Invoice Date]3), "SENT", “”)
= IF([Due Date]3 < TODAY(), "PAST DUE", “”)
Second, I'd like to calculate the day past due IF the invoice is Past Due in the [Days Past Due] column.
Any help would be greatly appreciated!