in some international versions of Access, there is a problem when dates are stored due to the regional settings. Try:
```
' queries: Format(Now(), "\#yyyy\-mm\-dd hh\:mm\:ss\#")
' recordsets and controls: rs!dtm = CDate(Format(Now(), "yyyy\-mm\-dd hh\:mm\:ss"))
```
Comments: ** Comment from web user: strive4peace **
```
' queries: Format(Now(), "\#yyyy\-mm\-dd hh\:mm\:ss\#")
' recordsets and controls: rs!dtm = CDate(Format(Now(), "yyyy\-mm\-dd hh\:mm\:ss"))
```
Comments: ** Comment from web user: strive4peace **
Graham Mandeno is fixing the date issue. José (voodoo37) has a quick fix for those who just need the Analyzer to run! It is here:
[http://analyzer.codeplex.com/discussions/549878#post1260471](http://analyzer.codeplex.com/discussions/549878#post1260471)