HookEmHorns
Programmer
Hello Experts -
I am new relatively new to Crystal and its causing some heartburn right about now.
I have a report form my client needs and if I keep it without a gouping, I get 4 pages for the 4 dates on my form. I would love to get it all to stay on one page and not print 4 times.
I created 4 formulas MMRDate1, MMRDate2, MMRDate3 and MMRDate4.
MMRDate1 =
MMRDate2 =
MMRDate3 =
MMRDate4 =
I am stumped how to get this to print on one page.
I am new relatively new to Crystal and its causing some heartburn right about now.
I have a report form my client needs and if I keep it without a gouping, I get 4 pages for the 4 dates on my form. I would love to get it all to stay on one page and not print 4 times.
I created 4 formulas MMRDate1, MMRDate2, MMRDate3 and MMRDate4.
MMRDate1 =
Code:
IF {cusASIISC_ImmunizationsGet.Category} = "Measles, Mumps, Rubella" and {cusASIISC_ImmunizationsGet.Sequence} = 0
THEN {cusASIISC_ImmunizationsGet.ImmunDte}
MMRDate2 =
Code:
IF {cusASIISC_ImmunizationsGet.Category} = "Measles, Mumps, Rubella" and {cusASIISC_ImmunizationsGet.Sequence} = 1
THEN {cusASIISC_ImmunizationsGet.ImmunDte}
MMRDate3 =
Code:
IF {cusASIISC_ImmunizationsGet.Category} = "Measles, Mumps, Rubella" and {cusASIISC_ImmunizationsGet.Sequence} = 2
THEN {cusASIISC_ImmunizationsGet.ImmunDte}
MMRDate4 =
Code:
IF {cusASIISC_ImmunizationsGet.Category} = "Measles, Mumps, Rubella" and {cusASIISC_ImmunizationsGet.Sequence} = 3
THEN {cusASIISC_ImmunizationsGet.ImmunDte}
I am stumped how to get this to print on one page.