hit post too soon.
If you are trying to run this query for a year long range and show the same record in each month that it occurred you would likely need to use a union query to artificially normalize your data
So for instance if you wanted for record AAA to show in january, feburary, march and april of 2014 with an indicator you would have to use a union query like:
Code:
SELECT tblTest.ID, tblTest.TESTFIELD, tblTest.SDate, "Start Dates" AS Label
FROM tblTest
WHERE (((tblTest.SDate) Between [Enter the Start Date] And [Enter the End Date]))
UNION ALL
SELECT tblTest.ID, tblTest.TESTFIELD, tblTest.MDate, "Midpoint Dates" AS Label
FROM tblTest
WHERE (((tblTest.MDate) Between [Enter the Start Date] And [Enter the End Date]))
UNION ALL
SELECT tblTest.ID, tblTest.TESTFIELD, tblTest.IDate, "Internship Dates" AS Label
FROM tblTest
WHERE (((tblTest.IDate) Between [Enter the Start Date] And [Enter the End Date]))
UNION ALL
SELECT tblTest.ID, tblTest.TESTFIELD, tblTest.EDate, "Midpoint Dates" AS Label
FROM tblTest
WHERE (((tblTest.EDate) Between [Enter the Start Date] And [Enter the End Date]))