Query to run based on the day of the week

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
767
Office Version
  1. 365
Platform
  1. Windows
Good afternoon,
I have a query that always goes back to the database and re aligns data, but I think I am doing this the long way round.
Ideally if the query is run on a daily basis and I would like (if possible) to work out what day of the week it is and run accordingly as follows.
If Monday run the query from the previous friday and if its Tuesday - Friday just run the previous days

Currently I have the formula in my criteria in the Query as follows
Code:
IIf(Weekday(Date())=2,Date()-3,Date()-1)
Which only runs the data for Friday and not Saturday or Sunday.
I have tried using > but I don't think this is the correct procedure.

thanks in advance
Gavin
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Hi,

You can test: MsgBox IIf(Weekday(Date) = 2, Date - 3, Date - 1)
 
Upvote 0
That will only use either Friday or the prior day, not from Friday to Saturday? My interpretation is that what is wanted is from Friday to Sunday inclusive when run on Monday. I think you need to include your date field name in your expression, so maybe like

[FieldName] >= IIf(Weekday(Date()=2),[FieldName]>Date()-3,[FieldName]=Date()-1)

which would include Monday if there is any data for it.
 
Last edited:
Upvote 0
thanks for the above @Micron,

I tried the following and it pulled all the days through and not just yesterdays data as I was thinking it would.
Is it something easy I am missing?

Code:
[Call Date]>=IIf(Weekday(Date()=2),[Call Date]>Date()-3,[Call Date]=Date()-1)

thanks
 
Upvote 0
It's not clear to me what you want. Maybe you could post data that makes that clear?
EDIT - make sure it shows for both Monday and not Monday situations.
 
Upvote 0
Good afternoon,

I have moved a step closer with the above query as in the formula in the query, which will pull only the data from 3 days ago.
Does anyone now how I could do this to be from 3 days to present?

I have tried "between Date()-3 and Date()-1" or just >date()-3, but these bring back no data at all

Code:
IIf(DatePart("d",Int(Now()),2),Date()-3,Date()-1)

thanks in advance
Gavin
 
Upvote 0
You have no operators in that. Where's your = or >= or <= ? Where's the "thing" you are comparing the values to ) [Call Date] )?
Test your expressions - put ?DatePart("d",Int(Now()),2) in the immediate window and press enter at the end of the line and what do you get? Ans. today, 31. The only day you will get 2 using that is on the second day of any month, regardless of what day that is. You're complicating things by using unnecessary functions (and probably ones that you don't understand completely). I think you were closer before.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,833
Messages
6,121,864
Members
449,052
Latest member
Fuddy_Duddy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top