Hi
I produce a timetable by grouping rows of data into 'slots' within a matrix - it looks a little like a cross-tab.
e.g. data looks like this:
PERIOD, DAY, NAME, NOTES
1,Mon,Monday 1,1
1,Tue,Tuesday 1,1
2,Mon,Monday 2,3
6,Fri,Friday 6,6
I group the data by PERIOD (max value 7, headers suppressed), suppress the detail but use a formula to see if DAY value is true, and use the group footer to display 'max of' the NAME.
the above sample data will look like this
Mon Tue Wed Thu Fri
1 Monday 1 Tuesday 1
2 Monday 2
3
4
5
6 Friday 6
7
Now to the question. Occasionally one of these rows of data will have a value in the notes field which differs from PERIOD, meaning the timetabled event should appear in BOTH areas of the matrix, the above example, using the same 4 rows of data now displays as...
Mon Tue Wed Thu Fri
1 Monday 1 Tuesday 1
2 Monday 2
3 Monday 3
4
5
6 Friday 6
7
anybody know a way of doing this? essentially calculating the 'slot' for each row of data and then returning and calculating again if the notes field is different.
any help appreciated
Les
I produce a timetable by grouping rows of data into 'slots' within a matrix - it looks a little like a cross-tab.
e.g. data looks like this:
PERIOD, DAY, NAME, NOTES
1,Mon,Monday 1,1
1,Tue,Tuesday 1,1
2,Mon,Monday 2,3
6,Fri,Friday 6,6
I group the data by PERIOD (max value 7, headers suppressed), suppress the detail but use a formula to see if DAY value is true, and use the group footer to display 'max of' the NAME.
the above sample data will look like this
Mon Tue Wed Thu Fri
1 Monday 1 Tuesday 1
2 Monday 2
3
4
5
6 Friday 6
7
Now to the question. Occasionally one of these rows of data will have a value in the notes field which differs from PERIOD, meaning the timetabled event should appear in BOTH areas of the matrix, the above example, using the same 4 rows of data now displays as...
Mon Tue Wed Thu Fri
1 Monday 1 Tuesday 1
2 Monday 2
3 Monday 3
4
5
6 Friday 6
7
anybody know a way of doing this? essentially calculating the 'slot' for each row of data and then returning and calculating again if the notes field is different.
any help appreciated
Les