Allen Browne said:
Works just like that.
HowMany is an alias for the field.
You can use any name you like there (other than reserved words).
Access typically uses:
SELECT Count([EventID] AS CountOfEventID
If SQL view is new for you, open any query you have and choose SQL View from
the View menu.
Okay, I finally got it. I had left the brackets in the expression. After
beating my head against the wall for a day, I just got it.
Thank you!
This query opens up an idea that maybe you can help me get to. If I want to
see how many events there were prior to 1/1/2003, I use 1/1/2003 as the
criteria in the query. Likewise, if I want to see how many events took
place prior to 2/1/2003, I would use that as the criteria.
Let's say I wanted to plot the growth of events over time by taking the
result of the query 1/1/2003, 2/1/2003 ..1/1/2004. I could run the query 12
times get the response and plot in Excel without trouble. Where would I
begin to generate this through Access?
This database is growing and I would like plot (via a web page) the events
"automatically" as the data changes without re-running the query each time.
I truly appreciate all the help this newsgroup has provided me. I have been
successful in implementing what I have wanted up to now. I am entering new
territory at this point!
Fro.