October 23, 200421 yr I need to set a flag field in each record of a found set to 1; then set the same flag field to 0 in the omitted set. The number of records is around 10000 and growing, and the found set is 10-20 records. What is the quickest way to do this? BTW - most records in the omitted set will already contain flag=0. It needs to be fast. (The reason for doing this is that I'm going to tell MS Word to select all records having flag=1 and generate a form letter - Word's ability to select FM records is limited to matching on a constant.)
October 23, 200421 yr By script you would need to show all records, then loop over all of them to set the field to zero, then perform the find, and then loop over those set the field to 1. But a quicker way would be by calculation field, using If or Case.
October 23, 200421 yr Author By calculation field, do you mean something like If["WorkshopID"=g_WorkshopID,1,0] ?
October 23, 200421 yr The danger in flagging a found set this way is in multi-user files. If multiple users have different found sets and each try to flag records, they will walk all over each other's found sets. -bd
October 25, 200421 yr Author The danger in flagging a found set this way is in multi-user files. Thanks for pointing that out. Even though there will only be one person using these files, I would guess that MS Word counts as a second user. This is obviously not a very good way to pass a set of records to Word's Data Merge manager.
Create an account or sign in to comment