Well, I switched from a JOIN over to a subquery and got it working perfectly using the following:
SELECT AuditLog.Processor,
Format(CDbl(Date)-(Weekday(Date)-2), "mm/dd/yyyy") AS WeekOf,
(Select Sum(ProductionCount.WeeklyCount)
From ProductionCount
Where...