Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello:
I have a list from From B2:F25 of items and amounts. B2 C2 D3 D4 E2 F2 Plastic 1 Metal 3 Stone 4 Wood 2 Plastic 1 Wood 1 Plastic 2 Metal 1 I would like to total in a cell the total amount of plastic in the whole chart. The total should be 4 not the amount of times the word plastic appears in the chart. I need the total amount of plastic ordered. Thanks for any help. Art. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming the items are in columns B, D and F and the numbers are in columns
C, E and G. A1 = plastic =SUMIF(B2:F25,A1,C2:G25) -- Biff Microsoft Excel MVP "art" wrote in message ... Hello: I have a list from From B2:F25 of items and amounts. B2 C2 D3 D4 E2 F2 Plastic 1 Metal 3 Stone 4 Wood 2 Plastic 1 Wood 1 Plastic 2 Metal 1 I would like to total in a cell the total amount of plastic in the whole chart. The total should be 4 not the amount of times the word plastic appears in the chart. I need the total amount of plastic ordered. Thanks for any help. Art. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Wow. Thanks. I began trying to use vlookup. And then thought for sure I'll
have to use sumproduct and other complicated formulas. I didn't dream sumif can do this. Thanks again. Art. "T. Valko" wrote: Assuming the items are in columns B, D and F and the numbers are in columns C, E and G. A1 = plastic =SUMIF(B2:F25,A1,C2:G25) -- Biff Microsoft Excel MVP "art" wrote in message ... Hello: I have a list from From B2:F25 of items and amounts. B2 C2 D3 D4 E2 F2 Plastic 1 Metal 3 Stone 4 Wood 2 Plastic 1 Wood 1 Plastic 2 Metal 1 I would like to total in a cell the total amount of plastic in the whole chart. The total should be 4 not the amount of times the word plastic appears in the chart. I need the total amount of plastic ordered. Thanks for any help. Art. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I also need to get the min of a chart but looking up only one row. So if I
have a chart in A1:A10 codes (110, 112, 114, 116...) and in B1:F10 I have prices, And I want in a cell the min (least) of code 112. Do I also use sumif? "T. Valko" wrote: Assuming the items are in columns B, D and F and the numbers are in columns C, E and G. A1 = plastic =SUMIF(B2:F25,A1,C2:G25) -- Biff Microsoft Excel MVP "art" wrote in message ... Hello: I have a list from From B2:F25 of items and amounts. B2 C2 D3 D4 E2 F2 Plastic 1 Metal 3 Stone 4 Wood 2 Plastic 1 Wood 1 Plastic 2 Metal 1 I would like to total in a cell the total amount of plastic in the whole chart. The total should be 4 not the amount of times the word plastic appears in the chart. I need the total amount of plastic ordered. Thanks for any help. Art. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=MIN(INDEX(B1:F10,MATCH(112,A1:A10,0),0)) -- Biff Microsoft Excel MVP "art" wrote in message ... I also need to get the min of a chart but looking up only one row. So if I have a chart in A1:A10 codes (110, 112, 114, 116...) and in B1:F10 I have prices, And I want in a cell the min (least) of code 112. Do I also use sumif? "T. Valko" wrote: Assuming the items are in columns B, D and F and the numbers are in columns C, E and G. A1 = plastic =SUMIF(B2:F25,A1,C2:G25) -- Biff Microsoft Excel MVP "art" wrote in message ... Hello: I have a list from From B2:F25 of items and amounts. B2 C2 D3 D4 E2 F2 Plastic 1 Metal 3 Stone 4 Wood 2 Plastic 1 Wood 1 Plastic 2 Metal 1 I would like to total in a cell the total amount of plastic in the whole chart. The total should be 4 not the amount of times the word plastic appears in the chart. I need the total amount of plastic ordered. Thanks for any help. Art. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup to total hours billed | Excel Worksheet Functions | |||
Duplicate Running Total Grand Total In Pivot Table | Excel Discussion (Misc queries) | |||
Excel 2002 : Any single button to get sub total and grand total ? | Excel Discussion (Misc queries) | |||
Using VLookup, Displacement, SumIF to total and average | Excel Discussion (Misc queries) | |||
MY VLOOKUP IS RETURNING N/A AND THEREFORE MY TOTAL SUM AT THE BOT. | Excel Discussion (Misc queries) |