Setting up a query to run business day

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have pulled modules for setting up business days in my queries - I'm stuck
on where exactly the modules go and what I need to do to run the module for
my report to start a count of days after something is older then 3 days.
Again being new at this I'm not quite sure about code and modules.
 
WMorsberger said:
I have pulled modules for setting up business days in my queries - I'm stuck
on where exactly the modules go and what I need to do to run the module for
my report to start a count of days after something is older then 3 days.
Again being new at this I'm not quite sure about code and modules.

you could filter your report for the data more than three days old.
SELECT tblTimeCard.DateTimeIn, tblTimeCard.DateTimeOut,
tblTimeCard.ClockID, DateDiff("d",[DateTimeIn],Now()) AS DaysOld
FROM tblTimeCard;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top