+ Reply to Thread
Results 1 to 6 of 6

Possible?

  1. #1
    Forum Contributor
    Join Date
    10-04-2006
    Posts
    151

    Possible?

    I have a dilemma,

    Emailed to me monthly are excel files (let us call these "dependant files") in which its data is imported from via another Excel file (Master File).

    Each month the file name is different. I have to manually rename the files so it works with my master file because it is/matches the filename specified in my macro.

    I have come up with a possible solution if the following scenario is possible.

    Is it possible to program a macro so that it recognizes the dependant files as the only .XLS file in a folder and pulls the data because it is the only .XLS file in the folder?

    Is there a better to approach this?

    Possible? Impossible? Need more clarification? Please ask!

    Thank you so much.

  2. #2
    Forum Contributor
    Join Date
    09-04-2006
    Location
    Yorkshire, England
    Posts
    267
    Cant you set up a workbook to copy the data you recieve into therefore you would not need to keep changing the name every month on the macro.
    JR
    Versions
    Mac OS X 'Leopard'
    Mac MS Office Excel 2004
    Windows XP
    MS Excel 2002
    MS Excel 2003

  3. #3
    Forum Contributor
    Join Date
    10-04-2006
    Posts
    151
    How is that possible?

  4. #4
    Forum Contributor
    Join Date
    11-29-2003
    Posts
    1,203
    Here is something I use. Assumes that there is only one .xls file in the folder.


    Please Login or Register  to view this content.

  5. #5
    Forum Contributor
    Join Date
    10-04-2006
    Posts
    151

    Incorporation?

    Hi, Thanks for your response!

    How would I incorporate that into this code?

    Sub Macro1()
    Application.ScreenUpdating = False
    Sheets("ARD").Activate
    Range("A1:G50").Activate
    ActiveSheet.Range("a1:g50").ClearContents
    Range("A1").Activate
    With ActiveSheet.QueryTables.Add(Connection:=Array( _
    "OLEDB;Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Documents and Settings\Jason\Desktop\Document" _
    , _
    "s\ANNIV.XLS;Mode=Share Deny Write;Extended Properties=""HDR=YES;"";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";J" _
    , _
    "et OLEDB:Database Password="""";Jet OLEDB:Engine Type=35;Jet OLEDB:Database Locking Mode=0;Jet OLEDB:Global Partial Bulk Ops=2;Jet" _
    , _
    " OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Da" _
    , _
    "tabase=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False" _
    ), Destination:=Range("A1"))
    .CommandType = xlCmdTable
    .CommandText = Array("FLEXDATA$")
    .Name = "ANNIV"
    .FieldNames = True
    .RowNumbers = False
    .FillAdjacentFormulas = False
    .PreserveFormatting = True
    .RefreshOnFileOpen = False
    .BackgroundQuery = True
    .RefreshStyle = xlOverwriteCells
    .SavePassword = False
    .SaveData = True
    .AdjustColumnWidth = True
    .RefreshPeriod = 0
    .PreserveColumnInfo = True
    .SourceDataFile = _
    "C:\Documents and Settings\Jason\Desktop\Documents\ANNIV.XLS"
    .Refresh BackgroundQuery:=False
    End With
    Sheets("Focus").Activate
    Selection.FillRight
    Application.ScreenUpdating = True
    End Sub

    Keep in mind that I just want to pull the data to a worksheet, not open the file.

    Thank you for all your help!

    Happy Holidays

  6. #6
    Forum Contributor
    Join Date
    11-29-2003
    Posts
    1,203
    Well, you have the file name 2 places in your code. The first of these is the Command string for the OLEDB, near the top; the second is the .SourceDataFile property setting near the bottom.

    You would take the code I posted and put it first. Leave off the last 2 lines, since all you really want is the string for the file path + name.

    Then, replace the 2 places in your code that have the file path + name and put the variable "strFile" there instead.

    I would do it for you, but there are a couple of practical problems involved.

    First, if I copy the code you posted and paste it into an Excel VBA Module, the entire connection string turns red. It seems, some bum carriage returns come along for the ride.

    Second, even if that were not the case, all it takes is one bad key stroke on my part and the OLEDB call would fail. Since I cannot test it (but you can), it would be best for you to do it.

    I can give you some tips, having done this a few times myself ... look closely at the long line (with multiple continuations) that starts with

    Please Login or Register  to view this content.
    That Connection string is an array. It may not be obvious at first, but if you parse it carefully, you will see that there are 2 members of the Array. The first member of the array is something like this:

    Please Login or Register  to view this content.
    And the second is:

    Please Login or Register  to view this content.
    What you want to do is re-write this with something like:

    Please Login or Register  to view this content.
    Get that working first (using an old file). Then, re-write the strCon variable, so it reads something like this:

    Please Login or Register  to view this content.
    Obviously, also replace

    Please Login or Register  to view this content.
    Once that is working, you can then use the code I posted to verify the folder (still) exists, and to read the file name from that folder.

    Hope this helps.

+ 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