+ Reply to Thread
Results 1 to 3 of 3

If funtion wildcard

  1. #1
    unodemad
    Guest

    If funtion wildcard

    Is it posible to create an if function based on a partial text strim?

  2. #2
    Don Guillett
    Guest

    Re: If funtion wildcard

    =if(left(a1,3)="Joe",etc

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "unodemad" <[email protected]> wrote in message
    news:[email protected]...
    > Is it posible to create an if function based on a partial text strim?




  3. #3
    Peo Sjoblom
    Guest

    RE: If funtion wildcard

    With the help of other functions

    =IF(LEFT(A1,3)="abc","do","don't")

    will look at the 3 first characters

    =IF(ISNUMBER(SEARCH("abc",A1)),"do","don't")

    will look for the string "abc"


    =IF(COUNTIF(A1:A1,"*abc*")>0,"do","don't")


    will actually use wildcards, the above basically is the same as the search
    formula



    Regards,

    Peo Sjoblom



    "unodemad" wrote:

    > Is it posible to create an if function based on a partial text strim?


+ 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