Weekly totals

  • Thread starter Thread starter Raj
  • Start date Start date
R

Raj

I need help with an expression that will give me the
weekly total. I have one expression that gives me the
monthly total but I need another expression that will
give me the weekly total from the current Monday to the
current date I run the query.
Thanks in advance
 
Raj,

The expression:
Date() - weekday(Date())+2
will always return last Monday's date (I assume this is wnat you mean by
current Monday). So, your criteria should look something like:
=Date() - weekday(Date())+2 and <=Date()

HTH,
Nikos
 
Nikos,
Thank you..
-----Original Message-----
Raj,

The expression:
Date() - weekday(Date())+2
will always return last Monday's date (I assume this is wnat you mean by
current Monday). So, your criteria should look something like:

HTH,
Nikos



.
 

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

Back
Top