queries to code

  • Thread starter TotallyConfused
  • Start date
T

TotallyConfused

just want to know if you can put a series of 3 or more queries that will give
you total sums of data to code? First I pull fields from main table, then I
group/count, then I run a crosstab to get totals only.
 
D

Duane Hookom

You can write code that:
-Creates queries
-opens recordsets based on queries
-takes recordset/field values and stores them in memory variables or other
tables
-lots of other cool stuff
 
T

TotallyConfused

What is a good source for samples of code that is easy to understand? Where
I can use code instead of using alot of queries for this report.
 
D

Duane Hookom

You should be using queries for reports, not code. Is there a reason that
you think you need code?
 
Top