I'm trying to fix a code that was working the last couple weeks but suddenly stopped working.
I have a form with a cells that fire actions when the user double clicks. So, out of no where, I am getting this error message regarding the below line of VBA:
LDOW is a date field in both the query I am referencing and in the form where the data is coming froom. Is there a better way to reference LDOW (last day of week)?
I have a form with a cells that fire actions when the user double clicks. So, out of no where, I am getting this error message regarding the below line of VBA:
Set rs = CurrentDb.OpenRecordset("SELECT TOP 1 LDOW FROM qryWeeklyForecast WHERE LDOW=""" & LDOW & """", dbOpenSnapshot)
LDOW is a date field in both the query I am referencing and in the form where the data is coming froom. Is there a better way to reference LDOW (last day of week)?