For a school project, I basically need to make a query that lists dates within a month of the current date. The problem is, the dates are laid out as such: PK field, Order FK, Payment 1, Payment 2, ... , Payment 12. I need a query that will, when ran, return to me a list of the orders and payments within one month of the date. Using Month([Schedule].[Payment 1])=Month(Now()) as a criteria returns to me the entire record, not the individual dates. Is there any way to do what I want?