As the title suggests, I'm trying to get the date that a file was last modified to return in a cell. I have multiple files, each with a unique folder path. I think the best way to do this is to have a column of cells with the file path in each, then create a function that will return the last modified date of that file path.
I have the following code:
Function LastModified() as Date
LastModified = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function
I'm not sure how I can edit it to meet my needs. Pointers or references much appreciated!!