I have a transcript report for students written in 8.5 In that report I have a formula that I use for calculating total number of absences (excused or unexcused--separate for each) for a student in a given academic year using a sum. I can't seem to get the unexcused absence portion right. It is giving me a total count of absences from the date of first unexcused absence for the year. The formula seemed to work correctly until this year.
Here is the formula located in the details section:
if isNull({StsAttndDayDtl_2.StsAttndDayDtl_2_Code}) = TRUE or
isNull({StsAttndDayDtl_2.StsAttndDayDtl_2_Academicyear}) = TRUE then
0 else
if {?Pm-StsGrdsGrds_1.StsGrdsGrds_1_Academicyear} =
{StsAttndDayDtl_2.StsAttndDayDtl_2_Academicyear} then
if {StsAttndDayDtl_2.StsAttndDayDtl_2_Code} = "1.0 U" then
1 else if {StsAttndDayDtl_2.StsAttndDayDtl_2_Code} = "0.5 U" then
.5 else 0
The sum is then in the group footer. Any help would be appreciated.
Here is the formula located in the details section:
if isNull({StsAttndDayDtl_2.StsAttndDayDtl_2_Code}) = TRUE or
isNull({StsAttndDayDtl_2.StsAttndDayDtl_2_Academicyear}) = TRUE then
0 else
if {?Pm-StsGrdsGrds_1.StsGrdsGrds_1_Academicyear} =
{StsAttndDayDtl_2.StsAttndDayDtl_2_Academicyear} then
if {StsAttndDayDtl_2.StsAttndDayDtl_2_Code} = "1.0 U" then
1 else if {StsAttndDayDtl_2.StsAttndDayDtl_2_Code} = "0.5 U" then
.5 else 0
The sum is then in the group footer. Any help would be appreciated.