I was able to get my report to pull whenever I used:
DoCmd.OpenReport "Incident Report", acViewReport, , "Date = #" & Me.Date & "#"
However whenever I have multiple records stored on the same date it pulls all of them at once, which is exaclty what the code is telling it to do. What I'm...