Anyway without the extra info I would be at a loss, Thanks
The norm is -1 not 0 for empty dates
I have re-released 1.8 with a fix to cover both -1 and 0
Download and install over the top.
What does this mean exactly??MoDementia wrote: ' Localise CDbl
Code: Select all
LastExportDate = CDblLocale(Now)
Function CDblLocale(sExpr)
Dim lLocale
lLocale = GetLocale
SetLocale "en-us"
CDblLocale = CDbl(sExpr)
SetLocale lLocale
End Function
Code: Select all
Replace(ValueThatCouldContainComma,",",".")