Table or Query

  • Thread starter spcscooter via AccessMonster.com
  • Start date
S

spcscooter via AccessMonster.com

In any of your professional opinions, is it better to create a report from a
table or query?
 
R

ruralguy via AccessMonster.com

Someone may disagree but I personally know of no situation where a query is
not better than using the table directly.
 
J

Jeff Boyce

If you are only ever basing your report on a single table, I suppose it
might not make a lot of difference.

If your data is well-normalized, you'll probably need to base your report on
data from multiple tables -- queries help here.

If you don't want to use every single record in a table, a query lets you
limit the number of records.

If you want to create a report that is based on some degree of 'aggregation'
(e.g., Sum, Avg, Count, Maximum, ...), you'll need to use a query.

In my experience, it's generally easier to create a query first, making sure
I'm getting the records I want, before then basing a report on that query.

JOPO (just one person's opinion)

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
S

spcscooter via AccessMonster.com

Thank you both for your feedback. This really helps me in my decision.
 

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