+ Reply to Thread
Results 1 to 7 of 7

Getting CSE formula to not run if error

  1. #1
    Valued Forum Contributor
    Join Date
    06-10-2011
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    341

    Getting CSE formula to not run if error

    Hi,

    I'm not very knowledgeable with CSE formulae so I'd like some help verifying if what I'm doing is correct:
    {=INDEX(BF:BF,MATCH($ES2&$C2,$AB:$AB&$E:$E,0))}

    What clause can I add that if say ES2 or AB are blank, don't run the CSE formula in the first place? I am running it across about 20k rows so being able to reduce the matches it does would help a fair bit.

    Or rather, would it even make a difference if I didn't add such a clause (would it evaluate full formula anyway rather than just the error/blank check part?)

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,412

    Re: Getting CSE formula to not run if error

    You could do it like this:

    =IF($ES2&$C2="","",INDEX(BF:BF,MATCH($ES2&$C2,$AB:$AB&$E:$E,0)))

    still committed with CSE. The INDEX part of the formula will not be calculated if those two cells are empty, so it should speed things up - mind you, you are using full-column references, so shortening those to just cover your data may improve it further.

    Hope this helps.

    Pete

  3. #3
    Valued Forum Contributor
    Join Date
    06-10-2011
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    341

    Re: Getting CSE formula to not run if error

    Ok I see, so I can only exclude the case based on the first 2 references (which reference a cell) but not those which reference a range (AB:AB), so that if its looping through AB&E it will ignore all those which have one of the two missing?

  4. #4
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,412

    Re: Getting CSE formula to not run if error

    It's the first parameter of your MATCH function - if that is empty then there is no point in looping through the arrays as there will be no match.

    Pete

  5. #5
    Valued Forum Contributor
    Join Date
    06-10-2011
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    341

    Re: Getting CSE formula to not run if error

    OK cheers for clearing that up. Might have to do it in reserve then

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,412

    Re: Getting CSE formula to not run if error

    Why don't you try it and see if there is any improvement in your workbook?

    Pete

  7. #7
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Getting CSE formula to not run if error

    Another option would be to pre-concatenate the cells in both tables, e.g. add a helper column in say ET which concatenates $ES2&$C2 with formula =$ES2&$C2 copied down

    and then do the same for the other table...in say EU: =$AB2&$E2

    then formula is simply

    =IFERROR(INDEX(BF:BF,MATCH($ET2,$EU:$EU,0)),"")

    regular entered and more efficient.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

+ 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