Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have an excel sheet with two columns that I need to pull data from. One
column contains employee names, the other contains a district number for each employee, and the other contains the number of classes taken for each employee. I need to create another worksheet that contains the total number classes taken per district. How would I go about doing this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(B1:B100="district number"),C1:C100)
adjust to suit "plunk25" wrote: I have an excel sheet with two columns that I need to pull data from. One column contains employee names, the other contains a district number for each employee, and the other contains the number of classes taken for each employee. I need to create another worksheet that contains the total number classes taken per district. How would I go about doing this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assume you have the unique district numbers listed on sheet2 in the range
A2:An The other data is on sheet1, district numbers in B2:B10 and classes taken in C2:10 Enter this formula on sheet2 in cell B2: =SUMIF(Sheet1!B$2:B$10,A2,Sheet1!C$2:C$10) Copy down as needed. Biff "plunk25" wrote in message ... I have an excel sheet with two columns that I need to pull data from. One column contains employee names, the other contains a district number for each employee, and the other contains the number of classes taken for each employee. I need to create another worksheet that contains the total number classes taken per district. How would I go about doing this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reusing formula | Excel Discussion (Misc queries) | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
Match then lookup | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |