VBA: Search In Arrays

AD_Taylor

Well-known Member
Joined
May 19, 2011
Messages
687
Hi,

Is there a quick way to search, for example a string array, to see if it contains a searched for string?

Something like:

Array = cat, dog, pigeon, horse, rabbit
Search for any of these, e.g. pigeon returns True?

Theres the obvious loop through the array with an If statement and a Boolean variable to record whether the value is found, but wondered if something quicker and easier was available?

Thanks,
Adam
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Here's a way without looping

Code:
Sub ary()
Dim s
s = Array("cat", "dog", "pigeon", "horse", "rabbit")
MsgBox IsNumeric(Application.Match("pigeon", s, 0))
End Sub
 
Upvote 0
Great this works perfectly Peter.

I assume this will be able to check for arrays of any size?
 
Upvote 0

Forum statistics

Threads
1,224,525
Messages
6,179,317
Members
452,905
Latest member
deadwings

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