+ Reply to Thread
Results 1 to 4 of 4

Finding a specific value in a cell

Hybrid View

  1. #1
    Registered User
    Join Date
    05-14-2012
    Location
    Spring Valley, NY
    MS-Off Ver
    Excel 2010
    Posts
    31

    Finding a specific value in a cell

    I have column B which have many rows of data, for some reason the program I'm using doesn't like that I have a doube quote sign (")

    I need to create a formula looking down all the rows in column B if any cell has a " in the field

    Here's an example. Row B2 says: 36" BENT SB AXE HANDLE. I need to remove the " and it should just say 36 BENT SB AXE HANDLE.

    Thank you

  2. #2
    Registered User
    Join Date
    06-19-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: Finding a specific value in a cell

    Hi

    Try, =REPLACE(A1,3,1,"") Assuming A1 contains the text string above

    Nick

  3. #3
    Forum Contributor
    Join Date
    08-01-2012
    Location
    Chicago
    MS-Off Ver
    Excel 2010
    Posts
    112

    Re: Finding a specific value in a cell

    Or, highlight the affected cells. Click "Ctrl+F"
    Click Replace.
    Find what: "
    Replace with: (leave this blank)
    Then click Replace all

  4. #4
    Valued Forum Contributor
    Join Date
    02-08-2012
    Location
    wales
    MS-Off Ver
    Excel 2007
    Posts
    964

    Re: Finding a specific value in a cell

    either do it as ajm said or this

    =SUBSTITUTE($A1,CHAR(34),"")
    where A1 has your initial wording. (the formula above will remove all instances of " within that text (its more complex as excel read "" as text so """ wouldn't subsitute " hence the reasoning behind CHAR(34) which is the charicter code for "
    The Importance of INDEX - A GUIDE TO INDEX'S OTHER USES
    <--- If a post helps hit the star

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1