I am trying to figure out how to perform a month to date report. For example, a link or method somewhere where an employee could click and see their month to date sales or how many of a particular item was sold during the current month. Thanks in advance for any help.
You can add a WHERE clause to SQL query to return only records that belong to the current month only. In MS Access you can use month() function for this purpose
WHERE Month(DateField)=Month(Now()) and Year(DateField)=Year(Now())