+ Reply to Thread
Results 1 to 6 of 6

compare to a list of array

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-17-2008
    Posts
    156

    compare to a list of array

    hi,

    How to compare to a string of objects
    1. TH0102
    2. KJ1403
    3. KJ1404
    4. TC0910
    5. TC0905

    Example :

    if column data A2 (TC0905) match to any of the objects 1 to 5 , it will return me TRUE.

    if(A2=(1,2,3,4,5),TRUE)


    Thanks
    Last edited by okl; 10-03-2009 at 12:40 PM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: compare to a list of array

    Do you mean ?

    =ISNUMBER(MATCH(A2,{"TH0102","KJ1403","KJ1404","TC0910","TC0905"},0))

    The inline array can be replaced with a range reference (eg B1:B5) containing values of interest if preferred, not clear.

  3. #3
    Forum Contributor
    Join Date
    01-17-2008
    Posts
    156

    Re: compare to a list of array

    Thanks, can replace if = TRUE return me "AFTER"

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: compare to a list of array

    Yes, insert an IF

    =IF(ISNUMBER(MATCH(A2,{"TH0102","KJ1403","KJ1404","TC0910","TC0905"},0)),"AFTER","")

  5. #5
    Forum Contributor
    Join Date
    01-17-2008
    Posts
    156

    Re: compare to a list of array

    im trying to modify to add another checking on column B2 data,

    if B2 <> "20" then test the below condition.

    =IF(ISNUMBER(MATCH(A2,{"TH0102","KJ1403","KJ1404","TC0910","TC0905"},0)),"AFTER","")

  6. #6
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: compare to a list of array

    In this case it makes sense to Embed the IFs rather than use AND, ie

    =IF(B2<>20,IF(ISNUMBER(MATCH(A2,{"TH0102","KJ1403","KJ1404","TC0910","TC0905"},0)),"AFTER",""),"")

+ 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