Hi,
here is my case:
trying to create the schedule table for a student.
i have a view that holds studentid, periodid, day, class
a regular student has 35 to 40 entries in this view.
what i do now is; create a new schedule typed view, filter it by studentid, periodid and day.
and show the class info in a grid cell for the appropriate period and day.
this method makes 35-40 visits to data storage which i believe isnt very good.
what would be a better approach?
maybe getting all entries for the student at once as a schedule typed view and filter it by period and day (if this is possible)?
or maybe something totally different than what i ve been doing?
thanks in advance
-shane