View Single Post
  #2  
Old March 20th 10, 02:39 AM posted to microsoft.public.outlook.program_vba
Salad
external usenet poster
 
Posts: 24
Default View emails sent by time range excl weekends

pmr wrote:

Want to create a query to view email by sent time range e.g. 9-5 excl weekends


Not an Outlook expert but you could set a filter.

Mon(1)-Fri(5) if vbMonday used.
? weekday(now(),vbMonday) = 5
True

Look at the Restrict method in help for filtering.


Ads