Mr.Morning Posted June 27, 2002 Posted June 27, 2002 I have two fields. In field one I have a choice between three options A, B, or C. In field two I have a choice between three options Z, Y, or X. I have over 100 records and I want to print a report where all the option A's are found from field one and I omit all the option Z's from field two. Can I do a combined find that finds certain records and omits others. When I do it separate I either get all of A, B, and C with Z omitted or Option A with all of Z, Y, X. There must be a simple way but I cannot get it. Thanks in advance for anyone's help. -Morning man
RussBaker Posted June 27, 2002 Posted June 27, 2002 You need 2 find requests to do this. It can be done either from the screen (and the find saved in a script) or it can be scripted directly. From the screen, enter Find mode and then: First request, Type "A" in field 1 New Request, Type "Z" in field 2 and click the Omit Record in the status area Execute the find. To script it: Enter Find Mode [ ] SetField [Field1,"A"] New Record/Request SetfField [Field2,"Z"] Omit Record Perform Find [ ] For a scripted find including the "Omit" step to work, the Status area must NOT be locked.
Recommended Posts
This topic is 8184 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now