Kevin Miller  wrote:

> Using "repeat for each" will give you the performance you need to deal with
> larger quantities of data:
> 
> put keys(myArray) into listOfKeys
> repeat for each line l in listOfKeys
> if item 2 of l is keyToFind then
>    put myArray[l] into newVariable
>    exit repeat
>  end if
> end repeat

Now, granted my knowledge is limited (but growing slowly), but this function
looks like it will use the names of the keys - rather than the stored
content. Is that right? Or, if not, is there a way to do what I originally
described - searching for the content of one key, and then putting the value
of the content of a related key into a new variable?

Thanks for clarifying.
-- 
Troy
RPSystems
www.rpsystems.net

Reply via email to