Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you please help! I have a very large column; I would like to sum at the
end everything that reads paid and everything that reads reversed in different cells Example: 1 A B 2 Status Amount 3 Paid $500.00 4 Paid $500.00 5 Reversed $400.00 6 Reversed $200.00 7 Paid $600.00 8 Reversed $700.00 9 10 Total Paid $1,100.00 11 Total Reversed $1,300.00 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=sumproduct(--(a2:a100)="Paid"),(b2:b100))
=sumproduct(--(a2:a100)="Reversed"),(b2:b100)) Or use SUMIF. HTH "Mary" wrote: Can you please help! I have a very large column; I would like to sum at the end everything that reads paid and everything that reads reversed in different cells Example: 1 A B 2 Status Amount 3 Paid $500.00 4 Paid $500.00 5 Reversed $400.00 6 Reversed $200.00 7 Paid $600.00 8 Reversed $700.00 9 10 Total Paid $1,100.00 11 Total Reversed $1,300.00 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am getting a error message with this formula.
"Toppers" wrote: =sumproduct(--(a2:a100)="Paid"),(b2:b100)) =sumproduct(--(a2:a100)="Reversed"),(b2:b100)) Or use SUMIF. HTH "Mary" wrote: Can you please help! I have a very large column; I would like to sum at the end everything that reads paid and everything that reads reversed in different cells Example: 1 A B 2 Status Amount 3 Paid $500.00 4 Paid $500.00 5 Reversed $400.00 6 Reversed $200.00 7 Paid $600.00 8 Reversed $700.00 9 10 Total Paid $1,100.00 11 Total Reversed $1,300.00 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use SUMIF
=SUMIF(A1:A14,"paid",B1:B14) =SUMIF(A1:A14,"Reversed",B1:B14) Syntax is =SUMIF(range,criteria,sum_range) -- Regards Ken....................... Microsoft MVP - Excel Sys Spec - Win XP Pro / XL 97/00/02/03 ------------------------------*------------------------------*---------------- It's easier to beg forgiveness than ask permission :-) ------------------------------*------------------------------*---------------- "Mary" wrote in message ... Can you please help! I have a very large column; I would like to sum at the end everything that reads paid and everything that reads reversed in different cells Example: 1 A B 2 Status Amount 3 Paid $500.00 4 Paid $500.00 5 Reversed $400.00 6 Reversed $200.00 7 Paid $600.00 8 Reversed $700.00 9 10 Total Paid $1,100.00 11 Total Reversed $1,300.00 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you. It works.
"Ken Wright" wrote: Use SUMIF =SUMIF(A1:A14,"paid",B1:B14) =SUMIF(A1:A14,"Reversed",B1:B14) Syntax is =SUMIF(range,criteria,sum_range) -- Regards Ken....................... Microsoft MVP - Excel Sys Spec - Win XP Pro / XL 97/00/02/03 ------------------------------Â*------------------------------Â*---------------- It's easier to beg forgiveness than ask permission :-) ------------------------------Â*------------------------------Â*---------------- "Mary" wrote in message ... Can you please help! I have a very large column; I would like to sum at the end everything that reads paid and everything that reads reversed in different cells Example: 1 A B 2 Status Amount 3 Paid $500.00 4 Paid $500.00 5 Reversed $400.00 6 Reversed $200.00 7 Paid $600.00 8 Reversed $700.00 9 10 Total Paid $1,100.00 11 Total Reversed $1,300.00 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Resize individual cells w/o changing the entire column width | Excel Discussion (Misc queries) | |||
Exclude specific cell from entire column | New Users to Excel | |||
Adding specific cells in column | Excel Worksheet Functions | |||
Easiest way to delete blank cells in column (not entire row) | Excel Discussion (Misc queries) | |||
extract specific info from cells in a column | New Users to Excel |