Results 1 to 4 of 4

Thread: Search function in sequence with characters

  1. #1
    Join Date
    Mar 2009
    Posts
    1,360

    Search function in sequence with characters

    I have a problem with an Excel file, the formula I use

    Code:
    =IF(ISERROR(SEARCH(BN$3;$B$4));"";1)
    In the box BN3 is entered, for example, Datastage. But if the word Datastage is written on one line but the form following:

    xxx/datastage/yy/zz,
    Excel will not pull me information.

    My hope is to raise the keyword content in cell BN3 but even if this keyword is a character sequence.

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Search function in sequence with characters

    Code:
    =IF(LEN (A1)=LEN(SUBSTITUTE(A1;A2;""));"";1)
    the principle is that the function substitute () replaces a string with another and does nothing if the string is not present. If asked to replace the empty string "", length is unchanged if that is not present and it will decrease this.

  3. #3
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Search function in sequence with characters

    Try this:

    Code:
      IF (ISERROR (SEARCH ("*" &BN$ 3 & "*" ;$B$ 4)) ; "" ; 1)

  4. #4
    Join Date
    May 2008
    Posts
    2,389

    Re: Search function in sequence with characters

    I think the problem is that Excel automatically interleaves depending on whether the text position where it is copied to another file. You can change the options in excel on the subject but it will reverse the problem and the desired words would not be found:
    Tools/Options/Spelling and AutoCorrect lists replace, delete.

Similar Threads

  1. Quick search Function in Opera with different Search engines?
    By Oorja in forum Technology & Internet
    Replies: 2
    Last Post: 23-02-2012, 05:53 PM
  2. Help to search the file in the C++ language using function
    By Gaauge in forum Software Development
    Replies: 5
    Last Post: 16-02-2010, 05:17 PM
  3. Search MAX / IF function in excel
    By Windowed in forum Windows Software
    Replies: 5
    Last Post: 05-01-2010, 02:00 PM
  4. Function search in a string
    By Amandev in forum Software Development
    Replies: 3
    Last Post: 24-11-2009, 02:19 PM
  5. Search function does not working in Windows XP
    By Sachit in forum Operating Systems
    Replies: 3
    Last Post: 17-07-2009, 11:16 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,065,507.66701 seconds with 17 queries