• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. M

    Multiple records

    =(SUMPRODUCT((A$1:A$100=$A1)*1)>0)*1+(SUMPRODUCT((B$1:B$100=$A1)*1)>0)*1+.....
  2. M

    Whether a word contains any vowel

    also work without array formula =SUMPRODUCT(NOT(ISERROR(FIND({"A","E","I","O","U"},UPPER(A1),1)))*1)>0
  3. M

    Multi Column vlookup

    you can try to use isna() with vlookup if your data is in 3 column of data (A:B,C:D and E:F) and you search for G1 =IF(ISNA(VLOOKUP(G1,A:B,2,FALSE)),IF(ISNA(VLOOKUP(G1,C:D,2,FALSE)),IF(ISNA(VLOOKUP(G1,E:F,2,FALSE)),"not...
Back
Top