Crystal Reports最大值(日期,客户)该记录中的其他字段

时间:2015-01-27 20:06:04

标签: crystal-reports max min crystal-reports-2008

我正在使用Crystal Reports 2008并尝试将其他字段与最大值(日期,客户)相关联。

数据:

customer    orderdate   item
'1'         '1/1/2014'   '87'
'1'     '1/2/2014'    '99'  
'1'     '1/3/2014'    '21'  
'1'     '1/4/2014'    '55'
...

报告显示

'Customer' 'maxOrderDate'  'maxOrderDateitem'  'minOrderDate''minOrderdateItem'

我已经按客户分组,并且在组标题中有最大和最小日期[通过安排详细信息提升而得到的最短日期]。按升序排序的详细订单数据。最大公式:最大值(orderDate,customer)。是否有可能获得该行的其他数据?

2 个答案:

答案 0 :(得分:1)

是的,你可以尝试下面的公式:

if orderdate=Maximum(orderdate)
then item

在最大日期之后放置上述公式,并以相同的方式创建最小日期

答案 1 :(得分:0)

再简单地按日期分组,然后根据需要选择升序或降序。 在那看起来将是:(根据集团Heirarchy,您也可以更改组顺序)

Customer............................................................
Date...............................................................
//place all other fields here and they will be according to the respective dates.