My data:
year id stat_date
2008 1 01/01/2008 - this is a date in week 1 of 2008
2007 2 01/08/2007 - this is a date in week 2 of 2007
2008 1 02/04/2008 - this is a date in week 6 of 2008
2007 3 02/06/2007 - this is a date in week 6 of 2007
I need to compare week to week (id distinctcount) to see what happened from a previous year to a newer year. Problem: Some weeks in a year might not have data so the user wants to see the distincountid of 0.
What I have now:
Year Week# idcount
2008 1 1
2007 2 1
2008 6 1
2007 6 1
What user wants to see:
Year Week# idcount
2008 1 1
2007 1 0
2008 2 0
2007 2 1
2008 6 1
2007 6 1
I do have a calendar table that includes dates (i.e. 2008-01-01) if that is needed.
I have Crystal 9 using a comma separated file.
Help is appreciated.
year id stat_date
2008 1 01/01/2008 - this is a date in week 1 of 2008
2007 2 01/08/2007 - this is a date in week 2 of 2007
2008 1 02/04/2008 - this is a date in week 6 of 2008
2007 3 02/06/2007 - this is a date in week 6 of 2007
I need to compare week to week (id distinctcount) to see what happened from a previous year to a newer year. Problem: Some weeks in a year might not have data so the user wants to see the distincountid of 0.
What I have now:
Year Week# idcount
2008 1 1
2007 2 1
2008 6 1
2007 6 1
What user wants to see:
Year Week# idcount
2008 1 1
2007 1 0
2008 2 0
2007 2 1
2008 6 1
2007 6 1
I do have a calendar table that includes dates (i.e. 2008-01-01) if that is needed.
I have Crystal 9 using a comma separated file.
Help is appreciated.