Results 1 to 4 of 4
  1. #1
    verhp11 is offline Novice
    Windows 10 Access 2016
    Join Date
    Aug 2018
    Posts
    6

    Generate Month view

    Situation:


    A database with members of a sport club.
    Every month they pay the same fee

    Whish:
    Automatic generate a list per month of members with the amount they have to pay
    At the end of the line a checkbox to record if the did pay which saves it to the monthrecord


    Question:
    What is the best way to accomplish this?

    Thank you,
    Peter

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,525
    on a form, put 2 text boxes,txtStartDate, txtEndDate
    the query will use this as a range to pull data:
    select * from table where [MyDate] between txtStartDate and txtEndDate

  3. #3
    verhp11 is offline Novice
    Windows 10 Access 2016
    Join Date
    Aug 2018
    Posts
    6
    Hi Ranman, thank you for your reply.
    I understand your example, but the thing I can't get done is that I want to have a report or dynamic table where I want to show (indeed start and end date) the month filled with all members and the payment they have to do, then in that report / table I want to be able to mark that it is paid or not. So I can see in one single instance who have and haven't paid per month, any tip on how to realize this?

    Thank you !!

  4. #4
    ssanfu is offline Master of Nothing
    Windows 7 32bit Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    Quote Originally Posted by verhp11 View Post
    <snip> but the thing I can't get done is that I want to have a report or dynamic table where I want to show (indeed start and end date) the month filled with all members and the payment they have to do, then in that report / table I want to be able to mark that it is paid or not. So I can see in one single instance who have and haven't paid per month, any tip on how to realize this?
    Don't know what you mean by "dynamic table", but I would NOT use a report (nor a "dynamic table"??) . Reports are for printing, not data entry. I know that MS allows it, but if you are going to enter data, use a form. That is what forms are for.

    I would have a form that shows all records (and the fields you want to see) in continuous forms view. In the header I would have two combo boxes. One to show the months of the year and the other to show the years. A button in the header would set a filter to limit the records for the selected month/year; VBA code would calculate the BOM and EOM dates.
    You could also have an option to show unpaid members for the selected month/year. Of course, there would be a button to remove the filter and show all records.

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

Similar Threads

  1. Replies: 1
    Last Post: 05-23-2018, 09:35 AM
  2. Replies: 10
    Last Post: 02-06-2018, 02:37 PM
  3. generate Report Borrow Book By Month and Year
    By ultra5219 in forum Reports
    Replies: 2
    Last Post: 08-07-2016, 06:57 AM
  4. Replies: 5
    Last Post: 10-08-2014, 02:23 PM
  5. Auto-Generate new records per month
    By gottnoskill in forum Programming
    Replies: 10
    Last Post: 03-12-2014, 08:16 AM

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