I'm trying to make mailing labels from an access database using a subset of the zip codes. That, I can do through the Select Expert. Within those zip codes, I need to select every OTHER address. I'm at a loss!!!
Create a running total field that counts the records. Then right click on the details section of the report, and select format section. To the right of the Suppress checkbox is a button labeled X-2. This is the conditional format area. Hit that button and enter a formula
Remainder({#countfield},2)=0
This will suppress all "even" records. Alter the formula to get the odd ones, or maybe tie in a paramter even/odd? field and put the proper logic in the same area, conditionally suppressing the records as you see fit.
Software Support for Sage Mas90, Macola, Crystal Reports, Goldmine and MS Office
Have the running total re-set on the change of your ZIP group. And suppress using:
Remainder({#countfield},2)=0.
By suppressing the even numbers, you will have at least one record for each zip group. If you suppressed using Remainder({#countfield},2)=1, and if there was only one record in that zip, you would end up with a group with no members. This is also why the running total idea is better than the method I suggested. The same empty group would result if there was only one record for that zip, and that record was suppressed.
Mike
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.