![]() |
formula help
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! |
formula help
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! |
formula help
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! |
formula help
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! |
formula help
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! |
formula help
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. -- |
All times are GMT +1. The time now is 02:21 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com