J
Jim Dudley
I have a report with 2 group levels. The fist group organizes data on
Workshops attended by Student #(unique 9 digit value)The second group level
organizes data on 5 different Types of Workshops and counts the # of records
for each Type.
The Page Footer then Totals the Counts of each group.
The above two items are group & sorting and returning the values I require
accurately.
I need a 3rd calculation from the Totals of the second group. Students earn
credits for each Workshop and earn College Certificates at 5 different Levels
base on accumulated credits.
I have inserted in the Group Fitter an expression in an Unbound Label
The first expression works and returns Level 1 for any student with 9 or
more credits, the subsequent conditions are not evaluated except for the
,Otherwise Expression at the end. If a student has less than 9 credits "N/A"
is returned.
I want the IIF stmt to return Level 2, 3, 4, or 5 for those students who
have accumulated the required credits.
This is my stmt: =IIf(Sum([Workshop_Registrations]![Credits])>=9,"Level 1",
IIf(Sum([Workshop_Registrations]![Credits])>=17,"Level 2",
IIf(Sum([Workshop_Registrations]![Credits])>=25,"Level 3",
IIf(Sum([Workshop_Registrations]![Credits])>=33,"Level 4",
IIf(Sum([Workshop_Registrations]![Credits])>=40,"Level 5","N/A")))))
Any comments on correcting this statement would be greatly appreciated.
Thanks in advance...
Jim
Workshops attended by Student #(unique 9 digit value)The second group level
organizes data on 5 different Types of Workshops and counts the # of records
for each Type.
The Page Footer then Totals the Counts of each group.
The above two items are group & sorting and returning the values I require
accurately.
I need a 3rd calculation from the Totals of the second group. Students earn
credits for each Workshop and earn College Certificates at 5 different Levels
base on accumulated credits.
I have inserted in the Group Fitter an expression in an Unbound Label
The first expression works and returns Level 1 for any student with 9 or
more credits, the subsequent conditions are not evaluated except for the
,Otherwise Expression at the end. If a student has less than 9 credits "N/A"
is returned.
I want the IIF stmt to return Level 2, 3, 4, or 5 for those students who
have accumulated the required credits.
This is my stmt: =IIf(Sum([Workshop_Registrations]![Credits])>=9,"Level 1",
IIf(Sum([Workshop_Registrations]![Credits])>=17,"Level 2",
IIf(Sum([Workshop_Registrations]![Credits])>=25,"Level 3",
IIf(Sum([Workshop_Registrations]![Credits])>=33,"Level 4",
IIf(Sum([Workshop_Registrations]![Credits])>=40,"Level 5","N/A")))))
Any comments on correcting this statement would be greatly appreciated.
Thanks in advance...
Jim