Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Have list of column of type of products in C and Total of pounds in D, in
cell F3 how do you add up total pounds if E is type of products in column D if Column C have same products? A B C D E F 1 Apple 500 2 Orange 200 3 Cherry 100 Apple 800 4 Apple 300 Cherry 250 5 Cherry 150 6 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT((C2:C6="Apple")*(D2:D6))
-- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Curtis" wrote in message ... Have list of column of type of products in C and Total of pounds in D, in cell F3 how do you add up total pounds if E is type of products in column D if Column C have same products? A B C D E F 1 Apple 500 2 Orange 200 3 Cherry 100 Apple 800 4 Apple 300 Cherry 250 5 Cherry 150 6 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have try that, it gives me a value error?
"Sandy Mann" wrote: =SUMPRODUCT((C2:C6="Apple")*(D2:D6)) -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Curtis" wrote in message ... Have list of column of type of products in C and Total of pounds in D, in cell F3 how do you add up total pounds if E is type of products in column D if Column C have same products? A B C D E F 1 Apple 500 2 Orange 200 3 Cherry 100 Apple 800 4 Apple 300 Cherry 250 5 Cherry 150 6 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In F3:
=sumif(c:c,e3,d:d) If I read the columns/rows correctly. Column C containd the list of fruit. Column D contained the values. E3 contained Apple. Curtis wrote: Have list of column of type of products in C and Total of pounds in D, in cell F3 how do you add up total pounds if E is type of products in column D if Column C have same products? A B C D E F 1 Apple 500 2 Orange 200 3 Cherry 100 Apple 800 4 Apple 300 Cherry 250 5 Cherry 150 6 -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave that helps.
"Dave Peterson" wrote: In F3: =sumif(c:c,e3,d:d) If I read the columns/rows correctly. Column C containd the list of fruit. Column D contained the values. E3 contained Apple. Curtis wrote: Have list of column of type of products in C and Total of pounds in D, in cell F3 how do you add up total pounds if E is type of products in column D if Column C have same products? A B C D E F 1 Apple 500 2 Orange 200 3 Cherry 100 Apple 800 4 Apple 300 Cherry 250 5 Cherry 150 6 -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Dave Peterson" wrote:
In F3: =sumif(c:c,e3,d:d) I've gone *SUMPRODUCT()* happy <g -- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Been there too often.
Sandy Mann wrote: "Dave Peterson" wrote: In F3: =sumif(c:c,e3,d:d) I've gone *SUMPRODUCT()* happy <g -- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|