Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have the following sheet:
A | B | C 10 | 20 | 30 x | x | - I would like to sum the second row (the one with values) for each column that has the value "x" in the third row. In the example above the sum should be 30 (10+20). How can I do that easily? I have many columns after column C so I can't use a regular IF-function. Very grateful for fast response! Regards, S |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
can you use pivot table? Regards, Ivan |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No, I can't. I need a formula.
|
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMIF(A2:C2,"x",A1:C1)
HTH -- AP a écrit dans le message de oups.com... I have the following sheet: A | B | C 10 | 20 | 30 x | x | - I would like to sum the second row (the one with values) for each column that has the value "x" in the third row. In the example above the sum should be 30 (10+20). How can I do that easily? I have many columns after column C so I can't use a regular IF-function. Very grateful for fast response! Regards, S |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() in A3 put if(a2="x",a1,0) then copy across whole row, then a sum of that whole row will give you the required total. -- robert111 ------------------------------------------------------------------------ robert111's Profile: http://www.excelforum.com/member.php...o&userid=31996 View this thread: http://www.excelforum.com/showthread...hreadid=534481 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMIF(2:2,"x",1:1)
-- HTH Bob Phillips (remove nothere from email address if mailing direct) wrote in message ps.com... No, I can't. I need a formula. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank's a lot Ardus!
|
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bob Philip's solution is more flexible.
-- AP a écrit dans le message de oups.com... Thank's a lot Ardus! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Easy question? Page numbers | Excel Discussion (Misc queries) | |||
How do I make each row add up seperatly? Please make it easy... | New Users to Excel | |||
OsCommerce - Easy Populate Script - CSV/TXT Conversion Problem. | Excel Discussion (Misc queries) | |||
new user with easy question? not easy for me | New Users to Excel | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions |