I Have am writing a program that is designed to give me the number of units on back log. The problem i am having is that I am pulling the information from an oracle database using access 97. The [plan del date] is storing the date in a short date format " 02/12/02" I am using the following iif statement to get the dates to appear as Jan, feb, mar, apr, may,......... for the entire year. The other field [Ordered Quan] holds the number of units that will be delivered. How do I get them together? so that I can have the number of units with a planned delivery date between a certain date range?? following is an example of what I am doing to get the dates to show as months : Jan: NZ(Sum(IIf(DatePart("m",[Plan Del Date])=1,1,0))) any ideas