Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
See if this is what you want:
=SUMPRODUCT(--('Sheet 1'!E2:E1344=0),--('Sheet 1'!E2:E1344<=30),('Sheet 1'!K2:K1344)) Note: I noticed you have a space between "Sheet" and "1". By default, I don't think there is a space in the tab names. HTH, Paul "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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Perform a calculation based on a cell being selected | Excel Worksheet Functions | |||
How to perform lookups based on multiple criteria? | Excel Worksheet Functions | |||
develop a macro to perform calculations and plot graphs based on . | Excel Programming | |||
How do I perform a function based on certain criteria? | Excel Programming | |||
can you perform a character count per cell with numbers? | Excel Discussion (Misc queries) |