on 2010 Mar 26 4:47 PM
Dear Experts,
I am needing a formula which will allow me to compare multiple records. For example, I will have muliple records for an ID:
1114169 74Y CPT SPIKER PHILLIP AT 4/30/2009 11
1114169 74Y CPT SPIKER PHILLIP PA 1/22/2009 14
I need to be able to compare records and determine if either one of records is less than 12. In this example, the first one would be , so I would want to not print either one on the report.
Any help on this would be very much appreciated
Kevin,
The only way that would know how to do this would be with a SQL Command.
Something along these lines...
SELECT *
FROM TableName
WHERE ID NOT IN (
SELECT ID
FROM TableName
WHERE RecordNumberField < 12)
HTH,
Jason
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.