Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm using Excel Standard Edition 2003 (11.5612.8132) and have following
problem. I need to get date of file creation (e.g. from Properties - file created) to specific excel cell (in day format) of the same file. Does any simple way (function?) exist? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Or if you know any other way how to handle this problem, feel free to mention
it. The situation is following (in more detail): I have set of items of different stautses (approved, in approving,...) and need to find out how many items changed its' status from "in approving" to "approved" in last 7 days (not from now, but from time when the report was generate). I can't use function TODAY() as it wolud take date of today as one to copmare with. I need somehow get the date of file creation - date when data were generated from SAP). Thanks for any advice. "Radek Simek" wrote: I'm using Excel Standard Edition 2003 (11.5612.8132) and have following problem. I need to get date of file creation (e.g. from Properties - file created) to specific excel cell (in day format) of the same file. Does any simple way (function?) exist? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this one-line UDF:
Public Function creation_date() As String creation_date = ActiveWorkbook.BuiltinDocumentProperties("Creation Date") End Function -- Gary''s Student - gsnu200755 "Radek Simek" wrote: I'm using Excel Standard Edition 2003 (11.5612.8132) and have following problem. I need to get date of file creation (e.g. from Properties - file created) to specific excel cell (in day format) of the same file. Does any simple way (function?) exist? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
No built-in Function
Function DocProps(prop As String) Application.Volatile On Error GoTo err_value DocProps = ActiveWorkbook.BuiltinDocumentProperties _ (prop) Exit Function err_value: DocProps = CVErr(xlErrValue) End Function '=DOCPROPS("author") 'or '=DOCPROPS("last save time") 'or 'DOCPROPS("creation date") Gord Dibben MS Excel MVP On Thu, 8 Nov 2007 04:25:00 -0800, Radek Simek <Radek wrote: I'm using Excel Standard Edition 2003 (11.5612.8132) and have following problem. I need to get date of file creation (e.g. from Properties - file created) to specific excel cell (in day format) of the same file. Does any simple way (function?) exist? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
File Creation Date | Excel Discussion (Misc queries) | |||
Syntax for Info or Cell function for xl. file creation date | Excel Worksheet Functions | |||
How do I show file creation date in a cell in Excel? | Excel Worksheet Functions | |||
Ouput File Creation Date | Excel Discussion (Misc queries) | |||
file creation date | Excel Worksheet Functions |