View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Thomas [PBD] Thomas [PBD] is offline
external usenet poster
 
Posts: 154
Default Add 10 minutes to a Date

RyanH,

Try this function:

ThisWorkbook.BuiltinDocumentProperties("Last Save Time") + .00695

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"RyanH" wrote:

I have a procedure that imports data from another workbook. I want ensure
that the source workbook has been updated in the last 10 minutes before I do
the import. How can I do this? Here is an example:

' make sure macola file has been updated in the last 10 mins
If ThisWorkbook.BuiltinDocumentProperties("Last Save Time") + 10 minutes <
Date Then
Call UpdateStatusOnOpen(ThisWorkbook)
End If


--
Cheers,
Ryan