i have a cross tab report where i display weekdays in column and count of person booked a flight for each week
something like
Sun Mon Fri Sat
05/01/2005 1 2 4 7
05/08/2005 7 6 1 9
the problem here is it displays week days only for those
records which exist on a given day like this will not
display Tue as there is no record for that day
i would like to display it in this format
Sun Mon Tue Fri Sat
05/01/2005 1 2 0 4 7
05/08/2005 7 6 0 1 9
how can i do this with a cross tab query
currently for displaying days i am using this function
select DayOfWeek ({tblMember.BookDate},crSunday)
case 1:'1-Sun'
case 2:'2-Mon'
Case 3:'3-Tue'
case 4:'4-Wed'
case 5:'5-Thu'
case 6:'6-Fri'
case 7:'7-Sat'
and for rows i have done a grouping on tblMember.BookDate
for each week for the first day in period
summary is the count of memberid in the same table
any help is appreciated
thanks
something like
Sun Mon Fri Sat
05/01/2005 1 2 4 7
05/08/2005 7 6 1 9
the problem here is it displays week days only for those
records which exist on a given day like this will not
display Tue as there is no record for that day
i would like to display it in this format
Sun Mon Tue Fri Sat
05/01/2005 1 2 0 4 7
05/08/2005 7 6 0 1 9
how can i do this with a cross tab query
currently for displaying days i am using this function
select DayOfWeek ({tblMember.BookDate},crSunday)
case 1:'1-Sun'
case 2:'2-Mon'
Case 3:'3-Tue'
case 4:'4-Wed'
case 5:'5-Thu'
case 6:'6-Fri'
case 7:'7-Sat'
and for rows i have done a grouping on tblMember.BookDate
for each week for the first day in period
summary is the count of memberid in the same table
any help is appreciated
thanks