I'm trying to achieve the last possible time of a particular day eg for Date of 2008-01-23 00:00:00.000 i would need 2008-01-23 23:59:59.999 perhaps by using the dateadd function on the Date field?
|
feedback
|
|
The answer is From Marc's blog:
| |||||
feedback
|
|
Add -1 milliseconds to the start of the next day (DateAdd even supports nanoseconds, if you want to get real fine). But most likely you just want to use this value in a comparison, and in that case it's even simpler. Rather than something like this:
or this:
Do it like this:
or this:
| ||||
feedback
|
I thought you had c# at first.. I will leave this here in case anyone else stumbles across this.
You can replace the 'now' variable with whatever day you are trying to figure out | ||||
|
feedback
|
|
Surely 23:59:59 is always the last possible time of the day? | |||
feedback
|
|
Could you please say how you intend to use this last possible time of a particular day? Perhaps we can find an elegant way around it. | |||
|
feedback
|