Okay, instead of VBA, consider this as RecordSource:
SELECT tbl_DailyRandoms.ID, Days.D, tbl_DailyRandoms.[1A], tbl_DailyRandoms.[1B]
FROM tbl_DailyRandoms RIGHT JOIN (SELECT DateSerial(Year(Date()), Month(Date()), [ID]) AS D FROM tbl_DailyRandomsDummy) AS Days ON tbl_DailyRandoms.D_Date =...