knewt99 Posted March 2, 2007 Posted March 2, 2007 Does anyone know of a way to compare contents of a field to the contents of the same field in the previous record? I'm having trouble employing Get(RecordNumber) since the record number remains constant and doesn't change when I sort. I know it should not work like this but it does. Any ideas?
Raybaudi Posted March 2, 2007 Posted March 2, 2007 Case( yourField = GetNthRecord( yourField ; Get( RecordNumber) - 1 ) ); ...do something; "" ) result UNSTORED
LaRetta Posted March 2, 2007 Posted March 2, 2007 Small things ... Case( YourField = GetNthRecord ( YourField ; Get( RecordNumber ) - 1 ) ; ... do something ) There was an extra parenthesis. Also, if you want a null default, you don't need to specify it. :wink2:
Recommended Posts
This topic is 6533 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