Results 1 to 8 of 8

VBA Code - Run-time Error 1004 can't find file

Threaded View

  1. #1
    Registered User
    Join Date
    12-26-2017
    Location
    Portland, OR, USA
    MS-Off Ver
    2016
    Posts
    4

    VBA Code - Run-time Error 1004 can't find file

    Hello,

    I am VERY new to VBA and I am getting a strange error when I run my macro. The code is below and the goal is to combine "Sheet1" of several workbooks into a new workbook (basically making a master for all of my spreadsheets). When I run it, I get the error pictured below, however, the file it cannot find is definitely in the folder. Can anyone help me solve this error? THANK YOU!

    Capture.PNG

    CODE:
    Sub LoopThroughDirectory()
    Dim MyFile As String
    Dim erow
    MyFile = Dir("C:\CE Sign In\")
    
    Do While Len(MyFile) > 0
    If MyFile = "zCE Class Sign In MASTER 2018.xlsm" Then
    Exit Sub
    End If
    
    Workbooks.Open (MyFile)
    Range("A2:O4").Copy
    ActiveWorkbook.Close
    
    erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range(Cells(erow, 1), Cells(erow, 15))
    
    MyFile = Dir
    
    Loop
    
    End Sub
    Last edited by hhelgerson; 12-26-2017 at 05:02 PM. Reason: Issue Solved

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Error Code 1004 - Can't find File
    By Scacks in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-15-2017, 04:05 PM
  2. Run Time Error 1004 (VBA Code)
    By Cheezee in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-26-2015, 04:47 PM
  3. Replies: 4
    Last Post: 11-15-2013, 05:03 PM
  4. VBA Code...error = run time error 1004 autofilter method of range class failed
    By Dariusd7 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-15-2013, 04:49 PM
  5. Run Time Error 1004 and I can't Find the Issue
    By tracymickeyd in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-07-2013, 02:37 PM
  6. Run Time Error 1004 on code
    By aftabn10 in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 02-24-2011, 09:46 AM
  7. Code Run-time error '1004'
    By superbob in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-11-2010, 09:18 AM

Tags for this Thread

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