I need to count and to list events for the current month todate and to count and list event for the rest or balance of the month. Could someone assist me in preparing these separate queries? Thank you in advance for your assistance.Thisis my query for list all events for the current month:SELECT EventTimeBegin AS [Closing Date - Time], EventName AS [File No], AttyLName AS [Atty], Borrower1LName AS [Borrower], Borrower1FName AS [First], ProcessorLName AS [Processor], LOLName AS [LO], ClosingLocation AS [Location], MtgeBroker AS [Broker], EventID AS [ID], ModuleID AS [MID], CreatedDate AS [Order Date] FROM RECalendar WHERE(RECalendar.FileType IN ('CONSTR','ConstrPerm','Constr Refi Table Fund','Conv Refi','FHA Refi','HELOC','Purchase 0 Loan','Purchase Loan','Purchase Cash','Witness') ANDRECalendar.ModuleID IN ('581','582','583','584','585','586','587','588','589','590','591','592','593','594','595','596','597','603','733','747','750','751','752','753','754','755','756','757','758','759','761','762','763','764','765','766','767','768','769','771','772','773','774','775','776','777','778','779','780','781','782','783','784','785','786','814','815','816','817','818','819','820','821','822','823','824','825','826','827','828','829','830','831','832','833','834','887','888','889','890','891','892','893','894','895','896','897','898','899','900','901','902','903','904','905','906','907','908','909','910','911','912','914','915')) AND(month(EventTimeBegin)=month(getdate()) AND year(EventTimeBegin)=year(getdate()) )ORDER BY EventTimeBegin ASCDon't miss the forest for the trees.