sorchard2000
Technical User
Crystal 8.5
SQL server
I have a report that has:
Group Header 2: date (by day)
Details band:
I have created a formula called @PtTypeAbbr (in the details band) that looks like:
if{case_volume.pattype_abbr} = "E" then "O"
else if{case_volume.pattype_abbr} = "I" then "I"
else if{case_volume.pattype_abbr} = "K" then "I"
else if{case_volume.pattype_abbr} = "L" then "O"
else if{case_volume.pattype_abbr} = "M" then "O"
else ""
I would like to create another formula (if appropriate) that would count each "I" and "O" that result from the @PtTypeAbbr formula. I would like the count formula to post results in the GH 2 (by day) AND also a grand total of of the "I" and "O" in GH 1 for that date range (such as a month at a type as dictated by parameter set by end user.)
I hope this is doable.
Thanks ahead for any help received!
sorchard2000
SQL server
I have a report that has:
Group Header 2: date (by day)
Details band:
I have created a formula called @PtTypeAbbr (in the details band) that looks like:
if{case_volume.pattype_abbr} = "E" then "O"
else if{case_volume.pattype_abbr} = "I" then "I"
else if{case_volume.pattype_abbr} = "K" then "I"
else if{case_volume.pattype_abbr} = "L" then "O"
else if{case_volume.pattype_abbr} = "M" then "O"
else ""
I would like to create another formula (if appropriate) that would count each "I" and "O" that result from the @PtTypeAbbr formula. I would like the count formula to post results in the GH 2 (by day) AND also a grand total of of the "I" and "O" in GH 1 for that date range (such as a month at a type as dictated by parameter set by end user.)
I hope this is doable.
Thanks ahead for any help received!
sorchard2000