+ Reply to Thread
Results 1 to 4 of 4

VBA Loop, And Check Function

  1. #1
    Registered User
    Join Date
    02-23-2010
    Location
    California, USA
    MS-Off Ver
    Excel 2007
    Posts
    14

    VBA Loop, And Check Function

    Hi All,

    I really need help with this! The goal of my code is to loop through all files in a folder and have it return the names of files that contain a named range called "PullData". I have a loop macro that goes through the directory to pull file names and a function that checks... but they are not working together. Please help! Thanks!!


    Sub CommandButton()

    Application.ScreenUpdating = False

    'Unhide Sheet11 (Formulas)
    Sheet11.Visible = xlSheetVisible

    Sheets("Formulas").Select
    'PART 1: Loop File
    'Turn off screen updating
    'Application.ScreenUpdating = False

    'File list
    Dim Directory As String
    Dim FileName As String
    Dim IndexSheet As Worksheet
    Dim row As Long
    UserDir = Sheets("Formulas").Range("C2").Value

    'Change the directory below as needed
    Directory = UserDir
    If Left(Directory, 1) <> "\" Then
    Directory = Directory & "\"
    End If

    row = 11

    Set IndexSheet = ThisWorkbook.ActiveSheet

    FileName = Dir(Directory & "*.xls")

    Do While Name("PullData") And FileName <> ""
    IndexSheet.Cells(row, 2).Value = FileName
    row = row + 1
    FileName = Dir
    Loop

    Set IndexSheet = Nothing

    'Go to MoveItems
    MoveReplaceRenew

    'Hide Sheet11
    Sheet11.Visible = xlSheetVeryHidden
    'Turn on screen updating
    Application.ScreenUpdating = True



    End Sub

    '------------------------CHECK FUNCTION---------------------
    Function Name(NamedRange As String, _
    Optional WB As Workbook) As Boolean

    Dim N As Long
    On Error Resume Next
    N = Len(IIf(WB Is Nothing, ThisWorkbook, WB).Names("PullData").Name)
    NameExists = (Err.Number = 0)

    End Function"

  2. #2
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264

    Re: VBA Loop, And Check Function

    Hi

    You'll need to open the files returned by Dir to use your function on them - I couldn't see that you were doing this in the code.
    Richard Schollar
    Microsoft MVP - Excel

  3. #3
    Registered User
    Join Date
    02-23-2010
    Location
    California, USA
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: VBA Loop, And Check Function

    Thanks, Richard! What's a good, quick way to open the file and check for it?

  4. #4
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264

    Re: VBA Loop, And Check Function

    Please Login or Register  to view this content.
    Note that your code has some problems in it in that it is using a function named "Name" which is the name of an object already in VBA (this can cause problems) - you would be well advised to change it to something like "DoesNameExist". You have also named variables as existing properties in VBA eg Filename - this too can cause issues.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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