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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Please help with formula for CR XI

Status
Not open for further replies.

jasona45

Technical User
May 15, 2003
37
0
0
US
I need a formula that will show anything that is greater than or equal to {incident.pt_stop_date} and that will also display blank fields for {incident.pt_stop_date}.

Thanks
 
If "what" is greater than or equal to {incident.pt_stop_date}?

Another database field? A parameter?

It is impossible to accurately answer your question as worded.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"making predictions is tough, especially about the future" - Yogi Berra
 
{incident.pt_stop_date} greater than or equal to 5/01/06 and any blank fields

Sorry
 
Try:

isnull({incident.pt_stop_date}) or
{incident.pt_stop_date} = date(0,0,0) or
{incident.pt_stop_date} >= date(2006,05,01)

This assumes you were referring to May 1, and that your field is a date type field.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top