Results 1 to 4 of 4

Thread: Looking for formula that can ignore text values in Excel

  1. #1
    Join Date
    Feb 2012
    Posts
    13

    Looking for formula that can ignore text values in Excel

    If text is input into some cells referenced by a formula, then I want the formula to ignore whatever text it finds and just calculate the result of the numbers in cells. How do i do this. Presently the formula displays #VALUE! where there is text in one or more of the cells referenced.

  2. #2
    Join Date
    Jul 2011
    Posts
    640

    Re: Looking for formula that can ignore text values in Excel

    You can try the following. Use ISNUMBER(): In place of A1 use =IF(ISNUMBER(A1),A1,"").

  3. #3
    Join Date
    Jul 2011
    Posts
    634

    Re: Looking for formula that can ignore text values in Excel

    Just some thoughts. If it's to sum numbers, we could use, eg: =SUM(A1:A3) instead of : =A1+A2+A3. SUM will ignore text, while : =A1+A2+A3 would return #VALUE! if there are text within the range. And if there's the possibility of "text" numbers within the range, which should also be included in the sum together with real numbers, then one way is to try, array-entered (press CTRL+SHIFT+ENTER): =SUM(IF(ISNUMBER(--A1:A3),--A1:A3)) [ =SUM(A1:A3) would ignore text numbers ].

  4. #4
    Join Date
    Jul 2011
    Posts
    623

    Re: Looking for formula that can ignore text values in Excel

    Please forgive my ignorance, I am looking to do something similar here. I am looking to divide the contents of cell B21 by the contents of cell A27 on my Excel sheet. The problem I am encountering is cell A27 contains the following "9 Waitresses" and I am looking to have the formula disregard the text "Waitresses". Can anyone tell me how to do this.

Similar Threads

  1. How to put formula in Text Box in Microsoft Excel
    By TheCarter in forum MS Office Support
    Replies: 2
    Last Post: 03-02-2012, 05:58 PM
  2. Convert copy formula to Text in Microsoft Excel
    By Kaesav in forum MS Office Support
    Replies: 2
    Last Post: 01-02-2012, 07:39 PM
  3. I need help with a text formula
    By Len Cobb in forum Windows Software
    Replies: 1
    Last Post: 31-08-2010, 01:15 AM
  4. Setting input text values
    By Solaris in forum Software Development
    Replies: 3
    Last Post: 23-11-2009, 02:42 PM
  5. Text not visible in cell only in Formula Bar (excel 2003)
    By NavinS in forum MS Office Support
    Replies: 1
    Last Post: 14-02-2008, 03:32 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,256,175.29315 seconds with 17 queries