Hello folks,
Still working on my first ever database and It is coming together nicely thanks to a lot of help I have received here. Thanks to everyone for that.
Now to my new issue... 
In one of my forms, I display the records for builds that need to be produced either next day or the day after. The filter I used in the properties is...
Code:
ProduceByDate = Date() +2 And Completed in Null
This code works great except for 1 problem....
The purpose for this form is for the warehouse to know what builds are coming up within the next 2 days so he can get all the parts pulled and ready. But the current code is only helpful on Monday through Wednesday. On Monday this form will list builds for Tue and Wed. On Tue, it will show builds for Wed and Thur. And in Wed it will show builds for Thur and Fri. But when it comes to Thursday, it will only show builds for Fri and Sat. But we don't work on the weekend. On Friday it wouldn't show anything at all when it should show Monday's and Tuesday's builds.
Does anyone know a way to make this code ignore Sat and Sun and include Mon and Tue at the end of a week?
Thank you.