+ Reply to Thread
Results 1 to 6 of 6

Help with forumla to work out sum of overdue invoices

  1. #1
    Registered User
    Join Date
    06-27-2013
    Location
    United Kingdom
    MS-Off Ver
    Excel 365
    Posts
    14

    Help with forumla to work out sum of overdue invoices

    Hi,

    I have a spreadsheet listing all my invoices, paid and unpaid. I would like Excel to work out how much my overdue ones are worth based on the number of days overdue.

    So, in column C I have invoice dates, in column G I have invoice amounts and in column I have paid amounts. That means that for an unpaid invoice, the corresponding cell in column I is empty. I want to show how the total outstanding amount for all invoices that are older than 30 days, older than 60 days and older than 90 days. If at all possible, I would like them not to include each other, i.e. display all invoices 31-60 days, all 61-90 days and all 90+ days.

    Any ideas?

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Help with forumla to work out sum of overdue invoices

    Upload example workbook.
    make sure to avoid all private informations.

  3. #3
    Registered User
    Join Date
    06-27-2013
    Location
    United Kingdom
    MS-Off Ver
    Excel 365
    Posts
    14

    Re: Help with forumla to work out sum of overdue invoices

    Thank you for your reply, I made an example file.
    Attached Files Attached Files

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Help with forumla to work out sum of overdue invoices

    31-60:
    =sumproduct(--($i$2:$i$25=""),--(today()-$c$2:$c$25>30),--(today()-$c$2:$c$25<=60),$g$2:$g$25)

    61-90:
    =sumproduct(--($i$2:$i$25=""),--(today()-$c$2:$c$25>60),--(today()-$c$2:$c$25<=90),$g$2:$g$25)

    90+:
    =sumproduct(--($i$2:$i$25=""),--(today()-$c$2:$c$25>90),$g$2:$g$25)
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  5. #5
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Help with forumla to work out sum of overdue invoices

    Since you already have all in your table I would suggest you to add one column into existing table.. Something like this:
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    06-27-2013
    Location
    United Kingdom
    MS-Off Ver
    Excel 365
    Posts
    14

    Re: Help with forumla to work out sum of overdue invoices

    Thanks guys, that works brilliantly, both ideas are great.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1