ISNUMBER(MATCH speed up.

strongman86

Board Regular
Joined
Feb 15, 2017
Messages
115
Office Version
  1. 2019
Platform
  1. Windows
Hi Excel guru's,

Can please someone suggest alternatives to below formula I could use to speed things up. I got "Master" sheet where it's pulling data from with thousands of rows and this formula is working very slow.

=ISNUMBER(MATCH(LEFT(Sheet1!F2,7)&"|"&Sheet1!E2,INDEX(LEFT(Master!$A$2:$A$8000,7)&"|"&Master!$AI$2:$AI$8000,0,0),0))

Kind regards,
Strongman86
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
What sheet name is this formula on?

I don't know how it will compare for speed, but you could try this

Excel Formula:
=COUNTIFS(Master!$A$2:$A$8000,LEFT(Sheet1!F2,7)&"*",Master!$AI$2:$AI$8000,Sheet1!E2)>0
 
Upvote 0
Solution
What sheet name is this formula on?

I don't know how it will compare for speed, but you could try this

Excel Formula:
=COUNTIFS(Master!$A$2:$A$8000,LEFT(Sheet1!F2,7)&"*",Master!$AI$2:$AI$8000,Sheet1!E2)>0
Hi Peter_SSs. This is about 10x faster. Thank you very much.
 
Upvote 0
You're welcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top