Dec 18, 2000 #1 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
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
Dec 18, 2000 #2 jazerr Programmer Dec 13, 2000 152 US 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... Upvote 0 Downvote
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...
Dec 18, 2000 #3 jazerr Programmer Dec 13, 2000 152 US 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... Upvote 0 Downvote
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...
Dec 18, 2000 #4 kenhamady Instructor Sep 10, 2000 8,794 US or you could add the following line to your selection formula: and not ({date} > Date(2000,12,12) Ken Hamady http://www.kenhamady.com/Crystal Reports Training and a Quick Reference Guide to VB/Crystal Upvote 0 Downvote
or you could add the following line to your selection formula: and not ({date} > Date(2000,12,12) Ken Hamady http://www.kenhamady.com/Crystal Reports Training and a Quick Reference Guide to VB/Crystal