In my table i have a column called "del date". I want to run a Query to return only the records that have a delivery date of today and tomorrow(next weekday).
To run on any day of the week and return the next weekday (Mon - Fri), place this in the criteria cell of your [Del Date] field:
date() or (date() + IIf(WeekDay(date()) > 5, 9 - WeekDay(date()), 1))