I was just about ready to post, when I saw that Brian did. This is just a slight variation. If you want a text display of the dates related to the weeknumber, use:
totext(dateadd("ww",{@weeknumber}-1,
Date(year({table.date}),01,01))-
dayofweek(Date(year({table.date}),01,01))+1,"MMMM d, yyyy"

+ " - "+
totext(dateadd("ww",{@weeknumber}-1,
Date(year({table.date}),01,01))-
dayofweek(Date(year({table.date}),01,01))+7,"MMMM d, yyyy"
//where {@weeknumber} =
datepart("ww",{table.date})
This assumes that the week containing January 1 is week 1, and that the week starts on Sunday.
-LB