I have two IF statements that I can get to work by themselves but not together.
Here is the first one by itself. The formula is in a cell called “# of Days Past Due”. Both Part A and Part B work separately.
Part A - If the Date payment received is blank, it takes TODAYs date and subtracts from the Claim date, else 0.
=IF(ISBLANK([DATE PAYMENT RECEIVED]1), (TODAY() - [CLAIM DATE]1), 0)
Part B - The second argument I want to add to this formula looks at the STATUS column and if it is NOT REJECTED, it calculates, else 0.
=IF(STATUS2 <> "REJECTED", (TODAY() - [CLAIM DATE]2), 0)
Again both of the above work by themselves, but not when I combine them in one formula.
They recognize the cells, and don’t show an error, but they don’t reach the Else if they are FALSE and display 0.
=IF(OR(ISBLANK([DATE PAYMENT RECEIVED]3), STATUS3 <> "REJECTED"), TODAY() - [CLAIM DATE]3, 0)
One workaround I had was to go with the first formula, but if the STATUS is set to REJECTED then I made the # of DAYS PAST DUE font be the same as the cell color so it can’t be seen.
thanks for your help....