Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Skipping Records

Status
Not open for further replies.

Ramjet

Programmer
Nov 1, 2000
21
US
When CR8 grabs a set of records and evaluates them
based on an if then clause can I tell it to skip the record?
For example:

If date > 12/12/2000 then
"skip record"
else
"print record"
end if

Can this be done somehow??

TIA
 
I suggest suppressing the section if it does not meet the criteria. For example:
If date > Date (200,12,05)then TRUE ELSE FALSE

Let me know how this turns out...
 
I suggest suppressing the section if it does not meet the criteria. For example:
If date > Date (2000,12,05)then TRUE ELSE FALSE

Let me know how this turns out...
 
or you could add the following line to your selection formula:

and not ({date} > Date(2000,12,12) Ken Hamady
Crystal Reports Training and a
Quick Reference Guide to VB/Crystal
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top