I have a 7-column report that lists the events associated with each of the 7 days of the week. This works fine, when there is an event on each of the 7 days; but... when there are events on only (say) 4 days of the week, then only the first 4 columns are used.
Ideally, each of the 7 columns should represent the 7 days of the week (Mon - Sun), with Monday always in the 1st column, Tuesday always in the 2nd column, etc. If there is no event on a particular day, then the column for that day should be skipped.
Does anyone know how this might be done?
I'm imagining that it might take a union query between the user-defined report record set and set of calendar days spanning the user-entered start and end dates (with its start date set to ensure a Monday, in case the user-entered start date is a day other than Monday).
Ideally, each of the 7 columns should represent the 7 days of the week (Mon - Sun), with Monday always in the 1st column, Tuesday always in the 2nd column, etc. If there is no event on a particular day, then the column for that day should be skipped.
Does anyone know how this might be done?
I'm imagining that it might take a union query between the user-defined report record set and set of calendar days spanning the user-entered start and end dates (with its start date set to ensure a Monday, in case the user-entered start date is a day other than Monday).