我正在使用 Crystal Reports 12.3 和 Peachtree Accounting 2012 来管理一些数据库。我现在的任务只是制作一个包含过去 30 天内未下订单的客户的报告。我是新手,所以我请求你的帮助。
我的第一次尝试是使用这个公式(我在公式编辑器 -> 记录选择中做我所有的事情):
not ({Customers.LastInvoiceDate} in Aged0To30Days)
除了空值之外,一切似乎都很好。我需要在报告记录中包含空值。所以我将公式重写为:
not ({Customers.LastInvoiceDate} in Aged0To30Days) OR IsNull({Customers.LastInvoiceDate})
但在 Peachtree Accounting 2012 中,我看到一个客户的空白LastInvoiceDate
字段不在报告中。
我的最后一个公式中是否存在某种错误?还是 DateTime 类型有一些“其他”黑色值?