Build an Accounts Receivable Aging Report in Excel
Loading...
18,361
Uploader Comments (DannyRocksExcels)
see all
All Comments (22)
-
@DannyRocksExcels ok thank you :)
-
@adebalayor Thanks Danny! This tutorial is really helpful!
-
@jhosen20091 I think so too
-
Good catch! I finally had a chance to go back and review this video and recreate the formulas.
I should have copied over - and editied the formula from cell I6 =IF(AND($E6>=91, $E6>120), $D6, " ")
I appreciate you letting me know this so that I can correct it.
Sincerely,
Danny Rocks
The Company Rocks
Loading...
How do you use if() and AND() in the same cell?
TheKa23 2 months ago
@TheKa23
I am having trouble posting a response - not sure why. I will try to send you a message in response.
DannyRocksExcels 2 months ago
This is great, I have one question. I added a "status" & "paid" column. When costumer pays I put date in the "paid" column & status column goes to paid or left un-paid till they pay. (used if command to determine paid/un-paid status)
My question is, how to get the "days past due" column to zero once they pay, other wise it continues to count as over due
Days Past due =IF($B$2-E4, $B$2-E4, " ")
Staus Column =IF(F4,"Paid","Un-Paid")
Thank You
Alex Code
MrAlexcode 11 months ago
@MrAlexcode
Hi Alex -
I have many comments on this video, so I am going to produce an update to it. I am planning to do that this week and I will incorporate your question in the new video.
Sincerely,
Danny Rocks
The Company Rocks
DannyRocksExcels 11 months ago
on the first spreadsheet, what formula do you have in cell D19 ($80,886)? Is there a way to sum up all the past due automatically without having to select D6:D14?
Thanks
adebalayor 11 months ago
@adebalayor
In cell D19 I use the =SUMIF() Function which has 2 required arguments (Range and Criteria) and one optional argument ([sum_range]). The cells that you reference (D6:D14) are the cells for the "Range" that we need to "look in" to match the "Criteria" of = "Past Due."
So, the answer is "Yes" if you are going to use the "SUMIF Function." You could save yourself some time if you create a "named range" - e.g. "Status" for all of the cells in Column D.
Danny Rocks
DannyRocksExcels 11 months ago