Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
I have a little problem on how to implement this functionality: Let's suppose I have 2 coloumns in excel named Value and Name. What I need to do is to achieve the sum of all the values of a certain name like this: Value Name 20 Alan 30 John 25 Alan 12 Ana The result I need is Total Value for Alan = 45 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you're really 'filtering' (that is, applying data filters), turn on the
filter FIRST, make a selection (eg Alan), and THEN use the autosum button. Instead of a sum function, you'll get a subtotal, which will add just those values that met the filter criteria. Otherwise, use sumif: =sumif(b:b,"Alan",a:a) "Visi" wrote: Hi I have a little problem on how to implement this functionality: Let's suppose I have 2 coloumns in excel named Value and Name. What I need to do is to achieve the sum of all the values of a certain name like this: Value Name 20 Alan 30 John 25 Alan 12 Ana The result I need is Total Value for Alan = 45 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Visi
=SUMPRODUCT(--($B$10:$B$13=B10)*($A$10:$A$13)) where b10:b13 contains names b10 contains the name you want and a10:a13 contains the values Regards Peter "Visi" wrote: Hi I have a little problem on how to implement this functionality: Let's suppose I have 2 coloumns in excel named Value and Name. What I need to do is to achieve the sum of all the values of a certain name like this: Value Name 20 Alan 30 John 25 Alan 12 Ana The result I need is Total Value for Alan = 45 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to copy just the filtered data? | Excel Discussion (Misc queries) | |||
total on filtered data? | Excel Worksheet Functions | |||
Help to sort out filtered data from the data contained in another sheet of the same workbook | Excel Worksheet Functions | |||
Using ONLY the data filtered | Excel Discussion (Misc queries) | |||
Filtered Data into Charts | Excel Discussion (Misc queries) |