Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need help in setting up a cell to reflect the Last Date Modified of a Word
Document. I did try Google but I don't fully understand the code that they are saying to use... is there someone who can walk me through how to do this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can try this UDF which will get you the date and time of any file. If you
are new to UDF set the Security level to low/medium in (Tools|Macro|Security). From workbook launch VBE using short-key Alt+F11. From menu 'Insert' a module and paste the below code. Save. Get back to Workbook. Function GetFileDateTime(strFile) GetFileDateTime = FileDateTime(strFile) End Function To use this from cell; try this formula (pass the full path) =GetFileDateTime("c:\temp.doc") PS: You will have to recalculate if the file is saved again. If this post helps click Yes --------------- Jacob Skaria "snickers22" wrote: I need help in setting up a cell to reflect the Last Date Modified of a Word Document. I did try Google but I don't fully understand the code that they are saying to use... is there someone who can walk me through how to do this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Forgot to mention to format the cell to date/time format of your choice..
If this post helps click Yes --------------- Jacob Skaria "Jacob Skaria" wrote: You can try this UDF which will get you the date and time of any file. If you are new to UDF set the Security level to low/medium in (Tools|Macro|Security). From workbook launch VBE using short-key Alt+F11. From menu 'Insert' a module and paste the below code. Save. Get back to Workbook. Function GetFileDateTime(strFile) GetFileDateTime = FileDateTime(strFile) End Function To use this from cell; try this formula (pass the full path) =GetFileDateTime("c:\temp.doc") PS: You will have to recalculate if the file is saved again. If this post helps click Yes --------------- Jacob Skaria "snickers22" wrote: I need help in setting up a cell to reflect the Last Date Modified of a Word Document. I did try Google but I don't fully understand the code that they are saying to use... is there someone who can walk me through how to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Modified Date | Excel Discussion (Misc queries) | |||
Date Last Modified | Excel Worksheet Functions | |||
date that a row is modified | Excel Discussion (Misc queries) | |||
modified date | New Users to Excel | |||
Modified Date | New Users to Excel |