Dear all, How to display '-' in the subject dropped by the student in SLP report. Example, a student took physics in S4 and dropped it in S5 and S6. I want the SLP report B to display '-' instead of WHITE SPACE in build-in template. S4 S5 S6 Physics 70 - - Thanks, Canyon
you may try to modify the formula '@y?com' in academic subreport. '@yr1com' as example select {?markAndOrGrade} case 'mark': if(isnull({@yr1score}) = true and isnull({@yr1gd}) = true) then '---' else if(isnull({@yr1score}) = true) then {@yr1gd} else {@yr1score} case 'grade': if(isnull({@yr1score}) = true and isnull({@yr1gd}) = true) then '---' else if (isnull({@yr1gd}) = true) then {@yr1score} else {@yr1gd} case 'both': if(isnull({@yr1score}) = true and isnull({@yr1gd}) = true) then '---' else if (isnull({@yr1score}) = true) then {@yr1gd} else if (isnull({@yr1gd}) = true) then {@yr1score} else {@yr1score} + chr(13) + {@yr1gd} default: if(isnull({@yr1score}) = true and isnull({@yr1gd}) = true) then '---' else if (isnull({@yr1score}) = true) then {@yr1gd} else if (isnull({@yr1gd}) = true) then {@yr1score} else {@yr1score} + chr(13) + {@yr1gd}
Thank you for your prompt reply. Is it possible to ask something further? That's to distinguish "ABSENT" and "DROPPED"? That's displaying "ABS" if the student is absent in that exam while displaying "---" if the student has dropped that subject. Great urgent! It is because of the special requirement of our school.