I'm using CR 9 with Linux.
Sample data (grouped by Process):
GH:
Process Start Date End Date
A 8/1/05 8/3/05
B 8/2/05 8/6/05
C 8/7/05 8/8/05
D 8/11/05 8/12/05
start date = minimum({datefield}, {process})
end date = maximum({datefield}, {process})
I need to display the previous process's end date so that I can subtract this value from the start date like this:
GH:
Process Start Date End Date Prev. End Date Days
A 8/1/05 8/3/05
B 8/2/05 8/6/05 8/3/05 -1
C 8/7/05 8/8/05 8/6/05 1
D 8/11/05 8/12/05 8/8/05 3
The Previous function won't work (it says "This field has no previous or next value") I think because it's a summarized field in the group header and not the details section.
Any thoughts? Thanks in advance!
Sample data (grouped by Process):
GH:
Process Start Date End Date
A 8/1/05 8/3/05
B 8/2/05 8/6/05
C 8/7/05 8/8/05
D 8/11/05 8/12/05
start date = minimum({datefield}, {process})
end date = maximum({datefield}, {process})
I need to display the previous process's end date so that I can subtract this value from the start date like this:
GH:
Process Start Date End Date Prev. End Date Days
A 8/1/05 8/3/05
B 8/2/05 8/6/05 8/3/05 -1
C 8/7/05 8/8/05 8/6/05 1
D 8/11/05 8/12/05 8/8/05 3
The Previous function won't work (it says "This field has no previous or next value") I think because it's a summarized field in the group header and not the details section.
Any thoughts? Thanks in advance!