Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
I found that jenop2's response from 3/28/2023 is correct: in this report, the payment(s) for the invoice(s) are listed before the invoices. But that didn't get me my date paid, until I started doing some extra work in Excel. (Please read all the way through before completing, you may be able to just use the revised at the bottom.)
In my case, this took my 769 line report of 309 invoices to only having to look at 47 records.
Then as I was reviewing these transactions, I made a change to my formula
=IF(C7="Payment",B7,IF(AND(C7="Invoice",NOT(ISBLANK(I7))),I7,""))
{The second IF statement in English reads if the line above's transaction type = Invoice and the line above in the Invoice Date column is not blank, put in that date in this cell.}
Now, it got the correct date for the invoice for almost everything. The only thing this didn't take into account is credit memos used to pay invoices. If you use that second invoice, you don't have to put your report in a table and highlight the missing numbers.
Few extra notes: don't forget to copy and paste special your new column over itself. If your report is resorted or if you delete any lines before doing this, you will lose all your hard work.
If your date field isn't acting like a date field, use Excel's replace command to find a 0 and replace with a 0. This will covert anything that looks like a date into a date. You can also use this to change numbers displaying as text - just search for a . and replace with a . (Yes, I know you can use that help box to do this same thing, but sometimes I get tired of dragging that cursor!)