Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default NEED HELP WITH A FORMULA PROBLEM

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default NEED HELP WITH A FORMULA PROBLEM

On Sat, 13 Dec 2008 11:03:01 -0800, al619
wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619


A1 & C1 also have numbers, and so have A4 & B4.
What do you want to do with them?
You only mention B2 & C2 and B5 & C5. What is special with them?

Please explain more what result you expect.

/ Lars-Åke
  #3   Report Post  
Posted to microsoft.public.excel.misc
dlw dlw is offline
external usenet poster
 
Posts: 510
Default NEED HELP WITH A FORMULA PROBLEM

=IF(B20,IF(C20,IF(B50,IF(C50,B2+B5,""),""),"") ,"")

"al619" wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default NEED HELP WITH A FORMULA PROBLEM

I would like the forluma to take all of column B & C information and if there
are any #'s in both Columns B & C to take Column B # and place it in B6.
Example: since B2(#23)&C2 AND B5(#14)&C5 both have #'s in columns, B6 = 27
Thank you all for any help,
al619

"Lars-Ã…ke Aspelin" wrote:

On Sat, 13 Dec 2008 11:03:01 -0800, al619
wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619


A1 & C1 also have numbers, and so have A4 & B4.
What do you want to do with them?
You only mention B2 & C2 and B5 & C5. What is special with them?

Please explain more what result you expect.

/ Lars-Ã…ke

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default NEED HELP WITH A FORMULA PROBLEM

Sorry if I am using the wrong termanology. They are not columns but cells.
Thanks,
al619

"al619" wrote:

I would like the formula to take all of column B & C information and if there
are any #'s in both Columns B & C to take Column B # and place it in B6.
Example: since B2(#23)&C2 AND B5(#14)&C5 both have #'s in columns, B6 = 27
Thank you all for any help,
al619

"Lars-Ã…ke Aspelin" wrote:

On Sat, 13 Dec 2008 11:03:01 -0800, al619
wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619


A1 & C1 also have numbers, and so have A4 & B4.
What do you want to do with them?
You only mention B2 & C2 and B5 & C5. What is special with them?

Please explain more what result you expect.

/ Lars-Ã…ke



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default NEED HELP WITH A FORMULA PROBLEM

In cell B6:

=SUMPRODUCT((B1:B5)*ISNUMBER(C1:C5))

which basically the same solution as already given in the thread "Help
on formula".

Hope this helps / Lars-Åke

On Sat, 13 Dec 2008 15:12:00 -0800, al619
wrote:

I would like the forluma to take all of column B & C information and if there
are any #'s in both Columns B & C to take Column B # and place it in B6.
Example: since B2(#23)&C2 AND B5(#14)&C5 both have #'s in columns, B6 = 27
Thank you all for any help,
al619

"Lars-Åke Aspelin" wrote:

On Sat, 13 Dec 2008 11:03:01 -0800, al619
wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619


A1 & C1 also have numbers, and so have A4 & B4.
What do you want to do with them?
You only mention B2 & C2 and B5 & C5. What is special with them?

Please explain more what result you expect.

/ Lars-Åke


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default NEED HELP WITH A FORMULA PROBLEM

Thank you.
I will try it out and let us see.

"Lars-Ã…ke Aspelin" wrote:

In cell B6:

=SUMPRODUCT((B1:B5)*ISNUMBER(C1:C5))

which basically the same solution as already given in the thread "Help
on formula".

Hope this helps / Lars-Ã…ke

On Sat, 13 Dec 2008 15:12:00 -0800, al619
wrote:

I would like the forluma to take all of column B & C information and if there
are any #'s in both Columns B & C to take Column B # and place it in B6.
Example: since B2(#23)&C2 AND B5(#14)&C5 both have #'s in columns, B6 = 27
Thank you all for any help,
al619

"Lars-Ã…ke Aspelin" wrote:

On Sat, 13 Dec 2008 11:03:01 -0800, al619
wrote:

A B C
1 13 21
2 23 13
3 13
4 4 32
5 14 15

Please help with this formula. Example: B2 & C2 both have numbers and also
Columns B5 & C5. Since both of these columns have #'s in them I would like
B2&B5 to add together in a different column.

Thank you for any input,
al619

A1 & C1 also have numbers, and so have A4 & B4.
What do you want to do with them?
You only mention B2 & C2 and B5 & C5. What is special with them?

Please explain more what result you expect.

/ Lars-Ã…ke



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
IF/AND Formula Problem CT Excel Worksheet Functions 9 June 11th 08 02:22 AM
Problem formula Wiggy Excel Discussion (Misc queries) 3 May 6th 08 06:55 PM
Another formula problem Frances C[_2_] Excel Worksheet Functions 6 November 1st 07 01:37 AM
Formula problem Max Excel Discussion (Misc queries) 0 August 17th 07 01:50 AM
Formula problem David Excel Discussion (Misc queries) 5 August 15th 07 10:04 PM


All times are GMT +1. The time now is 12:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"