Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create Total Column in Query 1

Status
Not open for further replies.

DTSjunkie

MIS
Jul 4, 2006
9
US
This is my first post on these forums. I have a couple checkboxes in a MS access query. I want to summate the total number of "Yes" (Checked) items. Is there an easy way, like putting all the variables in the SUM() function in a new expression? Here is a screenshot of the query:

Any help is greatly appreciated.

Will
 
Something like this (SQL code) ?
SELECT [Subject ID], Abs(QBQpreCP+QDKSpreCP+QHFSpreCP+QSTPIpreCP+QSDEpreCP) AS NumberOfYes
FROM yourTable

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top