Good afternoon
I have a formula in my query that identifies if today is Tuesday and sets the dates correctly for a between Monday and Friday of the previous week.
This works fine, but how would I add in to the below say the same for each day of the week?
Is this something that is possible?
thanks in advance
I have a formula in my query that identifies if today is Tuesday and sets the dates correctly for a between Monday and Friday of the previous week.
This works fine, but how would I add in to the below say the same for each day of the week?
Is this something that is possible?
Code:
Between IIf(Format(Date(),"ddd")="Tue",Date()-8) And IIf(Format(Date(),"ddd")="Tue",Date()-3)
thanks in advance