From: Robb27 on 17 Mar 2010 17:45 I have 3 cells in a row. We'll call them cell 1, 2 & 3. I need a formula in cell 3 that is based on what is in cells 1 and 2. Example: 1 - If there is a letter "A" in cell 1 or 2, then concatenate cells 1 and 2 in cell 3. 2 - If there is number in cell 1 and 2, then sum cells 1 and 2 in cell 3. Thanks for your help. Rob
From: Lars-�ke Aspelin on 17 Mar 2010 18:09 On Wed, 17 Mar 2010 14:45:03 -0700, Robb27 <Robb27(a)discussions.microsoft.com> wrote: >I have 3 cells in a row. We'll call them cell 1, 2 & 3. I need a formula in >cell 3 that is based on what is in cells 1 and 2. Example: > >1 - If there is a letter "A" in cell 1 or 2, then concatenate cells 1 and 2 >in cell 3. >2 - If there is number in cell 1 and 2, then sum cells 1 and 2 in cell 3. > >Thanks for your help. > >Rob If cell 1 is cell A1 and cell 2 is cell A2, try this formula in cell 3: =IF(OR(A1="A",A2="A"),A1&A2,IF(AND(ISNUMBER(A1),ISNUMBER(A2)),A1+A2,"")) Hope this helps / Lars-�ke
From: Teethless mama on 17 Mar 2010 21:39 =IF(COUNT(A1:B1)=2,A1+B1,IF(OR(A1="A",B1="A"),A1&B1,"")) "Robb27" wrote: > I have 3 cells in a row. We'll call them cell 1, 2 & 3. I need a formula in > cell 3 that is based on what is in cells 1 and 2. Example: > > 1 - If there is a letter "A" in cell 1 or 2, then concatenate cells 1 and 2 > in cell 3. > 2 - If there is number in cell 1 and 2, then sum cells 1 and 2 in cell 3. > > Thanks for your help. > > Rob
From: T. Valko on 17 Mar 2010 21:39 Try this... =IF(COUNT(A1:B1)=2,A1+B1,IF(OR(A1="A",B1="A"),A1&B1,"")) -- Biff Microsoft Excel MVP "Robb27" <Robb27(a)discussions.microsoft.com> wrote in message news:81133D7E-C8F7-4820-9541-3B3FF6306137(a)microsoft.com... >I have 3 cells in a row. We'll call them cell 1, 2 & 3. I need a formula in > cell 3 that is based on what is in cells 1 and 2. Example: > > 1 - If there is a letter "A" in cell 1 or 2, then concatenate cells 1 and > 2 > in cell 3. > 2 - If there is number in cell 1 and 2, then sum cells 1 and 2 in cell 3. > > Thanks for your help. > > Rob
From: Robb27 on 18 Mar 2010 10:59 Lars-�ke Aspelin;674606 Wrote: > On Wed, 17 Mar 2010 14:45:03 -0700, Robb27 > <Robb27(a)discussions.microsoft.com> wrote: > > >I have 3 cells in a row. We'll call them cell 1, 2 & 3. I need a formula in > >cell 3 that is based on what is in cells 1 and 2. Example: > > > >1 - If there is a letter "A" in cell 1 or 2, then concatenate cells 1 and 2 > >in cell 3. > >2 - If there is number in cell 1 and 2, then sum cells 1 and 2 in cell 3. > > > >Thanks for your help. > > > >Rob > > > If cell 1 is cell A1 and cell 2 is cell A2, try this formula in cell > 3: > > =IF(OR(A1="A",A2="A"),A1&A2,IF(AND(ISNUMBER(A1),ISNUMBER(A2)),A1+A2,"")) > > Hope this helps / Lars-�ke Hi Lars-Ake, Your formula in cell A3 worked great. Here is another question for you if you don't mind. Here is an example: Cell A1 Cell A2 Cell A3 Cell A4 50 9 9 18 #N/A I have your formula in cell A3 - In cell A4 I have this formula: INDEX(Basic_Strategy_Chart!$B$2:$K$41,MATCH(AN9,Basic_Strategy_Chart!$A$2:$A$41,0),MATCH(D9,Basic_Strategy_Chart!$B$1:$K$1,0)) My problem now is I can't figure out why my formula in Cell A4 returns an N/A result. This happens whenever I have 2 of the same number in A1 and A2. When there are different numbers in A1 and A2, or if there is an "A" in one of the cells, my formula works great. Can you see a problem, or do I need to send you my sheet for your review? Let me know. and thanks for your help. Rob -- Robb27 ------------------------------------------------------------------------ Robb27's Profile: 1620 View this thread: http://www.thecodecage.com/forumz/showthread.php?t=188456 http://www.thecodecage.com/forumz/chat.php
|
Next
|
Last
Pages: 1 2 Prev: Auto calculate Next: How do I find a value in a table without using the labels? |