×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Automatic copy

Automatic copy

Automatic copy

(OP)
I have a folder with few hundred of doc files with significant names.
I put also here an excel file as a master-index.
One column from the excel file has hyperlink formula in order to open quickly (no matter what) doc files.
Questions:
- is it a formula that could insert me in other column of the table the data of each doc file (I need to know when was the last update of the files (that means the xls file contains a command to read from a doc file the data of the file)?
- how can I do the following:
(1) mark several rows in the excel file
(2) the corresponding files that have the names in the marked crowd will be copied to other folder?
Thank you,
Replies continue below

Recommended for you

RE: Automatic copy

Well, I thought of some VB code:

Getting a file date is easy enough:


Function FileDate(R As Range) As Variant
On Error GoTo Fail
    FileDate = FileDateTime(R.Hyperlinks(1).Address)
    Exit Function
Fail:
    FileDate = CVErr(xlErrNA)
    Resume Next
End Function


You can use this function in your worksheet, argument is the cell containing the hyperlink, result is a DATE value, so you have to format the cell with the function as a date to display something understandable.

Selecting multiple rows:
Hold CTRL key while you click on the row number.

Copying the selected files, assuming that their address is in a hyperlink in the A column:


Sub CopySelection()
Dim S As Range, R As Range, SourceFile As String, DestDir As String, DestFile As String
    On Error Resume Next
    DestDir = InputBox("Destination directory:")
    DestDir = CurDir & "\" & DestDir
    If Dir((DestDir), vbDirectory) <> "" Then
        Set S = Selection
        For Each R In S.Rows
            SourceFile = CurDir & "\" & R.Cells(1, 1).Hyperlinks(1).Address
            DestFile = DestDir & "\" & R.Cells(1, 1).Hyperlinks(1).Address
            FileCopy SourceFile, DestFile
        Next R
    End If
End Sub


This uses the VBA filecopy method, so the files must be "free", i.e. not opened by Word, Excel, ...

I have not tested it really, so use it at your own risk


Regards,

Joerd

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close