How to update a list
How to update a list
Class_Numbers is a multiple-select variable
There's no built-in function to actually add a new value to the list.
for each student in Attendance [(Clock_Out is null)]
{
student.Class_Numbers = student.Class_Numbers.
add(some_value)
;
}
Cheers,
John Whitney