Crystal 报告最大值(日期,客户)该记录中的其他字段如何
Crystal Reports maximum(date,customer) what about other fields in that record
我正在使用 Crystal Reports 2008 并尝试获取与 maximum(date,customer) 关联的其他字段。
数据:
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'
我已按客户分组,组中有最大和最小日期 header [我通过按升序排列详细信息获得的最小日期]。详细订单数据按升序排序。最大值公式:maximum(orderDate, customer)。是否有可能获取该行的其他数据?
好吧,只需再次按日期分组,然后根据需要选择升序或降序。
这样看起来会是:(根据组层次结构,您还可以更改组顺序)
Customer............................................................
Date...............................................................
//place all other fields here and they will be according to the respective dates.
是的,你可以试试下面的公式:
if orderdate=Maximum(orderdate)
then item
将上面的公式放在最大日期之后,以同样的方式创建最小日期
我正在使用 Crystal Reports 2008 并尝试获取与 maximum(date,customer) 关联的其他字段。
数据:
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'
我已按客户分组,组中有最大和最小日期 header [我通过按升序排列详细信息获得的最小日期]。详细订单数据按升序排序。最大值公式:maximum(orderDate, customer)。是否有可能获取该行的其他数据?
好吧,只需再次按日期分组,然后根据需要选择升序或降序。 这样看起来会是:(根据组层次结构,您还可以更改组顺序)
Customer............................................................
Date...............................................................
//place all other fields here and they will be according to the respective dates.
是的,你可以试试下面的公式:
if orderdate=Maximum(orderdate)
then item
将上面的公式放在最大日期之后,以同样的方式创建最小日期