Here is the problem I am having, lets say I have a database with 6 records, and in those records is a field called "Status". Now lets say the first 4 records have the "Status" field set to "done" and the last 2 have it set at "Active".
Now, if I do the following (show every record whose field "Status" = "Active"), it will give me a found set with just the last 2 records. But if I then try to loop thru these 2 records and extract info this way:
repeat with i from 1 to 2
set New_Client to field "Customer_info" of record i
end repeat
I will get the value from the records with the value "done", since the (record i) reference is to the whole database not the found set. How do I loop thru only the found set records?
Now I realize I could just extract all values of the "Status" field into a list using: set New_Client_List to ((field "Customer_info" of every record whose field "Status" = "Active") as list)
But for reasons too long to explain here, I really need to be able to pull out values from a record in the found set by a sequencial reference.
Anybody know the syntax for that?
Manuel