jcc31 Posted December 7, 2005 Posted December 7, 2005 I would like to find records that match one field to another field. I have three fields. ID1 Name ID2. I would like to find any record that matches ID1 with ID2.
Raybaudi Posted December 7, 2005 Posted December 7, 2005 Hi make a new calculation field with calc: Case( ID1 = ID2 ; 1 ; 0 ) (that can be stripped to the simpler: ID1 = ID2 ) and make a find by this new field with 1 inside.
Gar Posted December 8, 2005 Posted December 8, 2005 Try this modification of previous Script: Show all records Go to Record/Request/Page(first) Loop If(ID1<>ID2) Omit Record Else Go to Record/Request/Page [Exit after last, Next] End If End Loop
Recommended Posts
This topic is 6925 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