If I do this:
Dim strDate, dteCounter, dteCounter2
strDate = "Manpower Data (2020-01-23).accdb"
strDate = Right(Left(strDate,Len(strDate)-7),10)
dteCounter = cdate(Month(strDate) & "/" & Day(strDate) & "/" & Year(strDate))
dteCounter2 = cdate("01/23/2020")
MsgBox "The date is: " & (dteCounter)...