create chart subscribers per month?

G

Geoff Cox

Hello,

I have a database for subscriptions to a web site which has the date
on which each application to join was made etc etc.

Can I easily create a chart of the number of people subscribing each
month for the lasr 4 years?

Cheers

Geoff
 
J

John W. Vinson

Hello,

I have a database for subscriptions to a web site which has the date
on which each application to join was made etc etc.

Can I easily create a chart of the number of people subscribing each
month for the lasr 4 years?

Sure, if your table is correctly structured.

Use a criterion on the date field of

BETWEEN DateAdd("yyyy", -4, Date()) AND Date()

and add a calculated field

SubMonth: Format([datefield], "yyyy-mm")

Make it a Totals query grouping by SubMonth and counting records. Base your
chart on this query.

John W. Vinson [MVP]
 
G

Geoff Cox

Hello,

I have a database for subscriptions to a web site which has the date
on which each application to join was made etc etc.

Can I easily create a chart of the number of people subscribing each
month for the lasr 4 years?

Sure, if your table is correctly structured.

Use a criterion on the date field of

BETWEEN DateAdd("yyyy", -4, Date()) AND Date()

and add a calculated field

SubMonth: Format([datefield], "yyyy-mm")

Make it a Totals query grouping by SubMonth and counting records. Base your
chart on this query.

John W. Vinson [MVP]

Thanks John - will see if I can do this!

Cheers

Geoff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top