Chart in Ms Access

Nora

Registered User.
Local time
Today, 05:21
Joined
Sep 16, 2015
Messages
10
Hi Experts!

I have Membership Database. It has valid and expiry dates.

I need to generate report with chart showing monthly of total number of member (primary axis) and total amount paid (secondary axis).

Example:
Member-1,
Valid: 01 Jan 15
Expiry: 31 Mar 15,
Paid: $300 (for 3-months)

In the chart, I would like to see Jan 15 showing 1 member paid $100, Feb 15 showing 1 member paid $100 and & Mar 15 showing 1 member paid $100.

Please advise.
 
Then you need to prepare your data using some loops and put it into a temporary table.
The loop has to take care of the Valid and Expiry date.
 
Hi JHB!

Thank you for your advise :)

Are you able to help me with the "loops"? I've seen it somewhere in other DB but not sure how to create it.

Thank you again.
 
Try the attached database, open the form "CreateData" and click the button.
 

Attachments

Thank you very much.

You have answered partially to my question :)
 
Thank you very much.

You have answered partially to my question :)
You're welcome, but why only partially, which part did I not answer? :confused:
I showed you how to make a loop, which was one of the question, and also (an idea of) how to prepare the data for each month.
What I left for you to do was creating a query which count the members and the sum the paid amount from the temporary table and then get that into a graph. That shouldn't be so difficult.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom