Results 1 to 11 of 11
  1. #1
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20

    Aging Report

    Hi all,

    I'm pretty new to access. I would say my knowledge is basic level. I am trying to create an aging report where I could see the following fields:


    Aging Balance #
    0 - 30 days $1,200,425 42
    31 - 60 days $2,300,425 32
    61 - 90 days $2,300,425 14
    91 - 120 days $2,300,425 32


    121 - 180 days $2,300,425 32
    181 - 365 days $2,300,425 32
    365+ $2,300,425 32

    I already have a query that pulls the data (acct #, note #, balance, and the date on exception since (which is the date it calculates the age by). I just do not know how to put it all together into a summary query.

    My table is the Annual Review Table. My field for Balance is [Curr Princ Bal] and my field for the date is [On Exception Since]

    Any help is much appreciated.

    Thanks,

    JB

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,964
    Bing: Access database aging balance

    Review http://office.microsoft.com/en-us/ac...101877532.aspx

    Crud! That's Excel.

    This is not easy. I would not even try to build from scratch. I would buy OTS app. I have used QuickBooks (economical) and Great Plains (extremely expensive).
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20
    I did look around first and the only thing I found was this, but could not get the query to work correctly for some reason

    http://www.ehow.com/how_5717463_crea...ts-access.html

  4. #4
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,964
    What happened - error message, wrong results, nothing?

    Where the nested subquery shows FROM Orders o try FROM Orders AS o or drop the table alias from the subquery.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  5. #5
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20
    It gave me a syntax Union query at the AS

  6. #6
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,964
    Well, it isn't supposed to be a UNION query. Post your exact attempted sql.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  7. #7
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20
    I did what is below. Please excuse the errors, like I said, Access is not my strong suit, but I am trying to learn it.

    (SELECT sum([Curr Princ Bal]) FROM [Annual Review] WHERE datediff("d", [On Exception Since], now) < 31) as [30 Days or Less]

  8. #8
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,964
    That web page has errors in the text. The &lt; probably should be <

    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  9. #9
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20
    Thanks I gave it a shot

    SELECT sum([Annual Review].[ Curr Prin Bal Amt]) FROM [Annual Review] WHERE datediff("d", [Annual Review].[On Exception Since], now) <31 AS [30 Days or Less]

    Gives me syntax error (missing operator) query expression 'datediff("d", [Annual Review].[On Exception Since], now) <31 AS [30 Days or less]'.

    Highlights the AS in the statement

  10. #10
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,964
    Appears you dropped a paren or two. Try:

    (SELECT Sum([Curr Prin Bal Amt]) FROM [Annual Review] WHERE DateDiff("d", [On Exception Since], Now) < 31) AS [30 Days or Less]
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  11. #11
    Jblackbelt is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    20
    Thanks. gave me the union error query again. I have someone that I found that is good with access and that I will try to see if they can help me. if not I will come back around

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Case Aging report
    By mavisyew in forum Reports
    Replies: 1
    Last Post: 09-02-2014, 05:35 AM
  2. Designing A/R aging Form
    By Ray67 in forum Database Design
    Replies: 22
    Last Post: 08-21-2014, 06:07 PM
  3. Replies: 3
    Last Post: 03-11-2013, 05:11 PM
  4. Aging buckets Access 2003
    By bootster in forum Queries
    Replies: 1
    Last Post: 04-06-2010, 01:11 PM
  5. Aging A/P function
    By nim73 in forum Programming
    Replies: 0
    Last Post: 05-07-2009, 01:23 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums