M Monsora83 Registered User. Local time Yesterday, 20:27 Joined May 16, 2011 Messages 41 Aug 31, 2012 #1 Hi All, Im trying to convert a value like 8/31/2012 2:36:14pm into just seconds. Any suggestions? Most what I find in google only tells me how to convert the hours and not the date as well. Thanks
Hi All, Im trying to convert a value like 8/31/2012 2:36:14pm into just seconds. Any suggestions? Most what I find in google only tells me how to convert the hours and not the date as well. Thanks
Trevor G Registered User. Local time Today, 01:27 Joined Oct 1, 2009 Messages 2,361 Aug 31, 2012 #2 Is it based on an actual date not a date period?
M Monsora83 Registered User. Local time Yesterday, 20:27 Joined May 16, 2011 Messages 41 Aug 31, 2012 #3 Trevor G said: Is it based on an actual date not a date period? Click to expand... I'm not sure I understand the difference.
Trevor G said: Is it based on an actual date not a date period? Click to expand... I'm not sure I understand the difference.
Trevor G Registered User. Local time Today, 01:27 Joined Oct 1, 2009 Messages 2,361 Aug 31, 2012 #4 OK what about this type of Expression in a Query Expr1: Hour([StoredDate])*3600+Minute([StoredDate])*60+Second([StoredDate])
OK what about this type of Expression in a Query Expr1: Hour([StoredDate])*3600+Minute([StoredDate])*60+Second([StoredDate])
M Monsora83 Registered User. Local time Yesterday, 20:27 Joined May 16, 2011 Messages 41 Aug 31, 2012 #5 Ah I found something that got me what I needed. DateDiff("s", Me.Time1, Me.Time2) Thanks