View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Perform SUM based off COUNT

same principle

=SUMIF('Sheet 1'!E2:E1344,"=0")-SUMIF('Sheet 1'!E2:E1344,"30")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"theryno" wrote in message
...
I have used the following to get a grand total count:
=IF(COUNTIF('Sheet 1'!E2:E1344,"=0")-COUNTIF('Sheet
1'!E2:E1344,"30"),SUM('Sheet 1'!K:K),"")

I would now like to get a total for everything in column E matching the
above condition. How do I code that into my formula?