I have a formula in GF1 (@CountNewLeanersThisYr):
Numbervar CntNewLearners;
If Maximum ({@DidCourseThisYr}, {vRepPeople.PeopleID}) = 1 and
Maximum ({@DidCourseWithin2Yrs}, {vRepPeople.PeopleID}) = 0 Then
CntNewLearners:= CntNewLearners + 1;
I'm counting learners who studied this year but havn't studied for the preceding two yrs (it makes them "new" for certain returns).
Problem : when I refer to the CntNewLearners in the report footer area, it increments the value by one.
If I display a formula containing only "Numbervar CntNewLearners" it still increments.
What am I doing wrong??
Thanks!
Numbervar CntNewLearners;
If Maximum ({@DidCourseThisYr}, {vRepPeople.PeopleID}) = 1 and
Maximum ({@DidCourseWithin2Yrs}, {vRepPeople.PeopleID}) = 0 Then
CntNewLearners:= CntNewLearners + 1;
I'm counting learners who studied this year but havn't studied for the preceding two yrs (it makes them "new" for certain returns).
Problem : when I refer to the CntNewLearners in the report footer area, it increments the value by one.
If I display a formula containing only "Numbervar CntNewLearners" it still increments.
What am I doing wrong??
Thanks!