Results 1 to 4 of 4

FileCopy list of files to another folder

Threaded View

  1. #1
    Forum Contributor
    Join Date
    04-23-2007
    Location
    Texas
    Posts
    417

    FileCopy list of files to another folder

    I'm trying to create a way for users to copy files based on check boxes.

    Column A is linked with the checkboxes. If "TRUE" is found in column A - offset 6 on the right lists the path and file name. I would like to copy that file and move to C:\apps\print\

    Sub pnt_list()
    
      Dim fs, a
      Dim hl As Hyperlink
      Dim fso As Object
      Dim SourcePath As String
      Dim dstPath As String
      Dim mf As Range
      
      SourcePath = ActiveCell.Offset(0, 6).Value
      dstPath = "C:\Apps\Print\"
      
      On Error Resume Next
      Set fs = CreateObject("Scripting.FileSystemObject")
      Set a = fs.CreateFolder("C:\Apps\Print\")
      On Error GoTo 0
      
      For Each mf In ActiveSheet.Range("A4:A" & Cells(Rows.Count, "A").End(xlUp).Row)
      If mf = "TRUE" Then ActiveCell.Activate
      FileCopy ActiveCell.Offset(0, 6).Value, dstPath
      Next mf
    End Sub
    Also tired FileCopy sourcepath, dstpath
    Last edited by Tortus; 07-19-2016 at 03:41 PM. Reason: Solved.
    If we all use our Minds our Heads and our Brains NO TELLING what we could come up with!!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copying files with FileCopy - files not released after running?
    By mc84excel in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 07-16-2015, 11:50 AM
  2. macros to list all files in folder THEN get info from files?
    By jonyorker in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-06-2015, 03:11 AM
  3. Noob 4 Help - Macro to LIST ALL FILES IN FOLDER and then IMPORT ALL LISTED FILES
    By StlSmiln in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-25-2012, 04:02 AM
  4. Copy files via wildcard, FileCopy not working
    By koltregaskes in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-22-2011, 10:33 AM
  5. List All Files In Folder
    By Rikuk in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-07-2009, 05:02 PM
  6. list files in folder
    By stoney1977 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-24-2009, 01:53 PM
  7. Alternative to the FileCopy Statement for open files?
    By broro183 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-10-2008, 06:07 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1