View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sh0t2bts Sh0t2bts is offline
external usenet poster
 
Posts: 16
Default Finding the Location within an Array

Hi All,

Thanks to this Group I was provided a snipit of code to find out is a
value is within my Array:-
If Not IsError(Application.Match(some_value, myArray,0)) Then
Do somthing
else
Do somthing else
End If

This works Great Thank You.

Is it possible to find out the location of the value without having to
loop through each entry?

Many Thanks

Mark