Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to know how to make excel check an entire column line by line
for a particular name and if the name exists I want it to go to another row and count up all the "R" that are there for that name. Does anyone know how to do this? -- Barb |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like this:
=SUMPRODUCT(--(A1:A10="Barb"),--(B1:B10="R")) Better to use cells to hold the criteria: D1 = Barb E1 = R =SUMPRODUCT(--(A1:A10=D1),--(B1:B10=E1)) Note that with SUMPRODUCT you *can't* use entire columns as range references unless you're using Excel 2007. -- Biff Microsoft Excel MVP "Barb Manjarres" wrote in message ... I would like to know how to make excel check an entire column line by line for a particular name and if the name exists I want it to go to another row and count up all the "R" that are there for that name. Does anyone know how to do this? -- Barb |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Barb,
SUMIF is probably the function you are looking, or maybe SUMPRODUCT. Take a look at this site for info on the use of both functions. http://www.xldynamic.com/source/xld.SUMPRODUCT.html HTH Martin "Barb Manjarres" wrote in message ... I would like to know how to make excel check an entire column line by line for a particular name and if the name exists I want it to go to another row and count up all the "R" that are there for that name. Does anyone know how to do this? -- Barb |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Formula needed | Excel Discussion (Misc queries) | |||
Excel formula needed | Excel Discussion (Misc queries) | |||
Excel formula - help needed! | Excel Worksheet Functions | |||
Excel - formula help needed | Excel Discussion (Misc queries) | |||
Excel formula help needed | Excel Worksheet Functions |