No subject


Wed Dec 28 11:38:03 CST 2011


This was a long way to go about doing this when you could easily do the Crosstab
query suggested in another post then run a report that sums the colums and the
rows. The only problem with the Crosstab is that you must modify the report if
new types are added. My way does not matter if new types are created as long as
the last 3 characters are one type and the other characters are another type
(you could modify this to use a delimiter and then not have to worry about the
length).

Scott Marcus 

-----Original Message-----
From: Drew Wutka [mailto:DWUTKA at marlow.com]
Sent: Tuesday, March 11, 2003 4:55 PM
To: 'accessd at databaseadvisors.com'
Subject: RE: [AccessD] Painted into a corner


No problem.  Just remember that the Unions can be the true SQL too.  So the
various querries could actually be in the Union Query, instead of making the
Union query's SQL point to them.  (Does that make sense?)

Go get some rest! <grin>

Drew

-----Original Message-----
From: John Clark [mailto:John.Clark at niagaracounty.com]
Sent: Tuesday, March 11, 2003 3:36 PM
To: accessd at databaseadvisors.com
Subject: RE: [AccessD] Painted into a corner


Actually, No, you did not make this complex...I think I actually
understand everything that you are saying. I am attempting to try this
now, but I think I am going to surrender for the evening. I am getting
some interesting results, but I am tired and need a break. When I say
interesting, I actually mean that they are promising. I'll pick it up
again at 7:30AM tomorrow!

So far, I am using: 

SELECT Findings, Count
FROM qryFindingsCntByPeriod
UNION SELECT txtResultSpec, Count
FROM qryCountsOne
UNION SELECT txtResult, Count
FROM qryCountsTwo;

Thank you very much for your help!

Good Night!

John W Clark

>>> DWUTKA at marlow.com 03/11/03 02:19PM >>>
John, just use a Union query.  A union query in Access must be written
in
SQL, but it's pretty simple.

Let's say you had this table:

tblClients:
FirstName
LastName

and this table:

tblPersonnel:
FirstName
LastName

Now, let's say we had this data:

tblClients:
FirstName    LastName
Bob		Smith
George	Blue
Harry		Jones

tblPersonnel:
FirstName 	LastName
John		Jacobs
Greg		Myst
Anna		Grant

Okay, now you want a query to show both your clients and your personnel
in
the same fields.

To show just the clients, this SQL would work:

Select FirstName, LastName


More information about the AccessD mailing list