This would be true if I had a query for each month. Let me explain the layout and the theory behind this report. I'm linking up with our SQL Server database. I have the following tables one for Customer info, One for salesman info, one for order details, and one for order herader info. The first query I have is one that pulls off all the info I need regarding customer info by linking all these tables. The resulting query contains all ordernumbers,order quantity, order price, order extension, salesman,customer. I also calculating cost of an order by multiplying order quantity by our cost field. This is a totals query. The next query I have written is one to get the orders based on the first query. It specifies the beging and end of month so it can be run at any given time. I have a similar query which does the same for YTD where YTD is defined as the point up yp the end of the month. Lets say the report was run on december 12th the YTD info would be as of 11/30/2003. I want to be able to combine the queries so the report can show both current month values as well as YTD. ANy help wpuld be most appreciated