Query Assistance, Please

cstimart

Well-known Member
Joined
Feb 25, 2010
Messages
1,180
I'm not getting my Query to workhttp://www.access-programmers.co.uk/forums/showthread.php?t=216214# right, please help.

I'm using 3 Fields [Book Yr], [Costs], and [Name]...what I'm looking to get is a breakdown/Group by Book Yr of the Count of Name and the Sum of Costs where [Costs] > 0.

I am able to group by the year and and get the correct sum of costs, but the Count of Name includes ALL the records (regardless of Costs). :confused:
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Please post your latest query.

How about
SELECT Count(cstimart.Name) AS CountOfName
, Sum(cstimart.Cost) AS SumOfCost
, cstimart.Yr
FROM cstimart
GROUP BY cstimart.Yr
HAVING Sum(cstimart.Cost)>0
 
Last edited:
Upvote 0
Please post your latest query.

Code:
SELECT [Book Yr], Count([Name]), Sum([Costs])
FROM [tblName]
GROUP BY [Book Yr]
HAVING [Book Yr]>=2003 AND Sum([Costs])>0
ORDER BY [Book Yr];
I finally figured it out. :rofl:

I had to add and addition criteria of

WHERE [Costs]>0
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,299
Members
452,904
Latest member
CodeMasterX

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top