string,
this will give you dates between the preceeding Monday through Friday. It does change on Tuesday to the present week. Put this in the criteria field of the date field. you could play around with it to compute Sunday.
Between IIf(Weekday(Date())=2,DateAdd("d",2-Weekday(Date()),Date())-8,DateAdd("d",2-Weekday(Date()),Date())) And IIf(Weekday(Date())=2,DateAdd("d",2-Weekday(Date()),Date())-3,Date())
I also have a function for a textbox to list the date from the previous Moday;
Function prevweek(ByVal mynumber As Date) As Date
prevweek = IIf(WeekDay(DATE) = 2, DateAdd("d", 3 - WeekDay(DATE), DATE) - 7, DateAdd("d", 2 - WeekDay(DATE), DATE))
End Function
To change day to Sunday, change the blue number to 1
To get an end date, like friday, it would be
=[the name of the textbox with the function] + 4
Hope this helps.
jim