+ Reply to Thread
Results 1 to 2 of 2

How do I evaluate on numeric characters within a string?

Hybrid View

  1. #1
    Registered User
    Join Date
    01-31-2005
    Posts
    1

    How do I evaluate on numeric characters within a string?

    I have a strange issue I'm dealing with and wondering if anyone knows of a way to do it. I have a cell that references another cell. If the source cell has a string somewhere in it that consists of " AL" the output cell will display the product name "Avloy". I am finding that this is incorrect, as the source cell is a product description, and in some instances has "Alkaline" or something like that in it, leading to an incorrect result. So......I'm trying to select only the items that have " AL" and the next character being NUMERIC only; the real probelm is that the string can appear anywhere in the source cell. Anyone have any ideas??? Thanks!

    Kevin

  2. #2
    Registered User
    Join Date
    01-11-2005
    Posts
    6
    Kevin,

    Assuming that a numeric character always follows the " AL", you could try the following:

    =IF(ISERROR(SEARCH(" AL",A1)),"",IF(ISERROR(1*MID(A1,SEARCH(" AL",A1)+3,1)),"","Return Product Name Function Here"))

    Where A1 contains the string containing the " AL"

    Hope this helps.

    -Jeff

+ 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