edison1135
Technical User
I think I must be missing something simple here, but I'm having trouble figuring out how to build a line graph that shows the cumulative dollar total by quarter. I would also like a second line graph in the same chart showing the cumulative pipeline remaining by quarter.
I'm using Crystal 7.0 and have an MDB database. To identify each quarter, I'm using a formula that looks at the Award Expected Date similar to the following:
If ({BID_SUBJ.AWARD_EXP_DATE}) >= DateTime (2002,07,01) and
({BID_SUBJ.AWARD_EXP_DATE}) <= DateTime (2002,09,30) then
"2002 3rd Qtr" and so on for each quarter.
My report uses the above formula as a group header, and the report separates the wins by quarter.
A second formula separates the leads into wins or pipeline as follows:
If {STATUS.DESCRIPTION} in ["Won Booked", "Won Not Booked"] then "Wins"
Else
If {STATUS.DESCRIPTION} in ["Prospect", "Stage 1", "Stage 2", "Stage 3", "Stage 4"] then "Pipeline"
This formula is used in second group header, and the report lists cumulative dollar amounts. But when I try to include a line chart to track the cumulative dollars by quarter, instead it shows the sum for each quarter.
Thanks for the assistance.
I'm using Crystal 7.0 and have an MDB database. To identify each quarter, I'm using a formula that looks at the Award Expected Date similar to the following:
If ({BID_SUBJ.AWARD_EXP_DATE}) >= DateTime (2002,07,01) and
({BID_SUBJ.AWARD_EXP_DATE}) <= DateTime (2002,09,30) then
"2002 3rd Qtr" and so on for each quarter.
My report uses the above formula as a group header, and the report separates the wins by quarter.
A second formula separates the leads into wins or pipeline as follows:
If {STATUS.DESCRIPTION} in ["Won Booked", "Won Not Booked"] then "Wins"
Else
If {STATUS.DESCRIPTION} in ["Prospect", "Stage 1", "Stage 2", "Stage 3", "Stage 4"] then "Pipeline"
This formula is used in second group header, and the report lists cumulative dollar amounts. But when I try to include a line chart to track the cumulative dollars by quarter, instead it shows the sum for each quarter.
Thanks for the assistance.