There are some options available but without more info it is impossible to say what you need to do. Let me give you some posibilities.
Use datepart("w",date()) to get the day of the week where 1=Sun, 2=Mon, 3=Tue, ...
You can use the Choose function in conjunction with datepart to determine some values.
Choose(datepart("w",date()),'Sun value','Mon value', ..., 'Sat value')
You can write a function in VBA and use the function in a query. In this case I use the Select Case statement.
Function DetermineValue ()
Select Case datepart("w",date())
Case 1
<Case 1 logic>
DetermineValue = SundaySales 'just a sample
Case 2
<Case 2 logic>
Case 3
<Case 3 logic>
.
.
.
Case Else
msgbox "What? Not a day of the week!"
End Select
End Function
Hope these help a little. Terry
The reason why worry kills more people than work is that more people worry than work. - Robert Frost