Results 1 to 6 of 6
  1. #1
    Sgt_Bear is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2011
    Posts
    3

    Overwie

    Hello

    I have the following problem. I have a Budget Database created where i can set the vaule of my bankaccount and made a form where i can type the cost of anything and select a category of the cost e.g. Vehicle, House or something else.

    Now i wanna to create a Site where i can see the summary of costs for every category. I wanna have one per month. e.g. Vehicle cost of August 11 = 1500$, and one for the Year e.g. Vehicle costs until now = 10000$

    How can i make something like that? Can somebody help me?



    If you need more details, tell me.

    Thanks
    Sgt_Bear

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,603
    What do you mean by Site?

    Build a report using Grouping & Sorting with summary calcs. Access Help has guidelines on building reports using these features.
    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
    Sgt_Bear is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2011
    Posts
    3
    I mean like a Form, i would like to display a category and see a summary of every single month. and at the bottom i wanna have a field with the total summary of the year.

    Like this:

    Code:
     
    Category (dropdown) : e.g. Vehicle
     
    January:
    February:
    March: 
    ...
    ...
     
    Total 2011:

  4. #4
    dreday's Avatar
    dreday is offline Advanced Beginner
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Posts
    58
    If you want to do it in a form you'll need to get a query that does the total for each month and bind it to a continuous form that shows the month and total. To get the year total you'll need an unbound textbox in the form header or footer with a default value of the sum([whatever your price textbox is called])

  5. #5
    Sgt_Bear is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2011
    Posts
    3
    Thank you. So now i have createt a Query who make's totals for each month's. But can you tell me how i can make a Form who doesn't display the records whit the arrows on the bottom? I wanna to have a field to select de Type of Cost in a Dropdown, and then the content is called up. How can i make this?

  6. #6
    dreday's Avatar
    dreday is offline Advanced Beginner
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Posts
    58
    Yeah, they are called navigation buttons. There is a form property for this, set it to No or Off and the arrows will disappear.

    You can also make the control source of a dropdown box the same query and set the display column to which ever field you want to appear in the dropdown. In the OnChange or AfterUpdate event you can program your form filter. Something like:

    me.filter = "Month =" & [dropdown name]

    Hope this helps

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

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