Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hello,
I have A B C B E 1 c 100 90 c 2 c 100 100 b 3 d 200 80 f 4 d 100 90 d total I need a formula that will add column B and column C only if columns A & B are the same. Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You probably meant
=if(a2=D2,b2+c2,"") -- Don Guillett Microsoft MVP Excel SalesAid Software "Araseli" wrote in message ... hello, I have A B C B E 1 c 100 90 c 2 c 100 100 b 3 d 200 80 f 4 d 100 90 d total I need a formula that will add column B and column C only if columns A & B are the same. Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you so much for your help!
i actually needed to total the columns. I rec'd my anser from another post "Don Guillett" wrote: You probably meant =if(a2=D2,b2+c2,"") -- Don Guillett Microsoft MVP Excel SalesAid Software "Araseli" wrote in message ... hello, I have A B C B E 1 c 100 90 c 2 c 100 100 b 3 d 200 80 f 4 d 100 90 d total I need a formula that will add column B and column C only if columns A & B are the same. Thanks! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I wasn't sure if you're asking for one global answer, or line by line
calculations, so here's both. To get row 1 to do a simple test, put this in E1 and copy down: =IF(A1=D1,B1+C1) To get one answer for the whole table in one cell without the formula above helping, put this formula down below somewhe =SUMPRODUCT((A1:A4=D1:D4)*(B1:B4+C1:C4)) Expand the ranges as needed, but make sure they're all the same size. -- "Actually, I *am* a rocket scientist." -- JB Your feedback is appreciated, click YES if this post helped you. "Araseli" wrote: hello, I have A B C B E 1 c 100 90 c 2 c 100 100 b 3 d 200 80 f 4 d 100 90 d total I need a formula that will add column B and column C only if columns A & B are the same. Thanks! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I actually used the one for the whole table and that worked!
Thank you sooo much! I have another Q: If i need to have a count for the columns where A & D are the same which formula should is use? "JBeaucaire" wrote: I wasn't sure if you're asking for one global answer, or line by line calculations, so here's both. To get row 1 to do a simple test, put this in E1 and copy down: =IF(A1=D1,B1+C1) To get one answer for the whole table in one cell without the formula above helping, put this formula down below somewhe =SUMPRODUCT((A1:A4=D1:D4)*(B1:B4+C1:C4)) Expand the ranges as needed, but make sure they're all the same size. -- "Actually, I *am* a rocket scientist." -- JB Your feedback is appreciated, click YES if this post helped you. "Araseli" wrote: hello, I have A B C D E 1 c 100 90 c 2 c 100 100 b 3 d 200 80 f 4 d 100 90 d total I need a formula that will add column B and column C only if columns A & B are the same. Thanks! |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Perhaps:
=COUNTIF($A$1:$A$100,$D$1:$D$100) -- "Actually, I *am* a rocket scientist." -- JB Your feedback is appreciated, click YES if this post helped you. "Araseli" wrote: I actually used the one for the whole table and that worked! Thank you sooo much! I have another Q: If i need to have a count for the columns where A & D are the same which formula should is use? "JBeaucaire" wrote: I wasn't sure if you're asking for one global answer, or line by line calculations, so here's both. To get row 1 to do a simple test, put this in E1 and copy down: =IF(A1=D1,B1+C1) To get one answer for the whole table in one cell without the formula above helping, put this formula down below somewhe =SUMPRODUCT((A1:A4=D1:D4)*(B1:B4+C1:C4)) Expand the ranges as needed, but make sure they're all the same size. -- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|