If you want to select all dates fro the current week then create 2 formulas
//@WeekStart - Returns Monday of the week
Today - (DayOfWeek (Today,crMonday) - 1)
//@WeekEnd - Returns Sunday of the week
Today - (DayOfWeek (Today,crMonday) + 7)
Then use these in the record selection formula
{MyTable,date} >= {@WeekStart}
and {MyTable.date} <= {@WeekEnd}
HTH
Gary Parker
MIS Data Analyst
Manchester, England