MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Feb 23rd, 2002, 04:01 AM   #1
UniversalJOC
New Member
 
Join Date: Feb 2002
Posts: 40
Default

I'm trying to establish whether I can create a marco that will open a folder and search for new files with a certain title? Is this possible? I then intend to create a further marco to open (the text file), delimit it and open it in an excel format. Can anyone enlighten me if this is possible?
UniversalJOC is offline   Reply With Quote
Old Feb 23rd, 2002, 07:20 AM   #2
dk
MrExcel MVP
 
Join Date: Feb 2002
Location: Sydney, Australia
Posts: 2,908
Default

Hi,

You can use the filesearch capabilities of the Office object library. You can modify this code to suit your needs. It currently lists all files in a specified folder in an Excel worksheet.

Sub ListFiles()
Dim lngLoop As Long

With Application.FileSearch
.NewSearch
.LookIn = "C:temp"
.SearchSubFolders = True
'You can experiment with this next line to limit the number of files returned
.LastModified = msoLastModifiedThisWeek
.Filename = "*searchtexthere*"
.FileType = msoFileTypeExcelWorkbooks
If .Execute > 0 Then
For lngLoop = 1 To .FoundFiles.Count
Cells(lngLoop, 1) = .FoundFiles(lngLoop)
Next
End If
End With

End Sub

HTH,
D
dk is online now   Reply With Quote
Old Feb 25th, 2002, 12:57 AM   #3
UniversalJOC
New Member
 
Join Date: Feb 2002
Posts: 40
Default

With regard to the below code, I am a tranger to basic. How would i implement this? Also how would I choose the folder that is searched?
UniversalJOC is offline   Reply With Quote
Old Feb 25th, 2002, 01:58 AM   #4
dk
MrExcel MVP
 
Join Date: Feb 2002
Location: Sydney, Australia
Posts: 2,908
Default

OK,

First of all open the Visual Basic Editor (Alt+F11). Then click Insert, Module. This will add a module in which you can place macro and function code. Paste the code I gave you directly into that module.

To choose the folder you are searching change this line:-

LookIn = "C:temp" (should be only one back slash)

to Lookin = "C:whatever folder you want"

HTH,
D
dk is online now   Reply With Quote
Old Feb 25th, 2002, 02:46 AM   #5
UniversalJOC
New Member
 
Join Date: Feb 2002
Posts: 40
Default

Hi, I have tried the above but am having no result at all?
Thanks
UniversalJOC is offline   Reply With Quote
Old Feb 25th, 2002, 03:56 AM   #6
dk
MrExcel MVP
 
Join Date: Feb 2002
Location: Sydney, Australia
Posts: 2,908
Default

Are there any files in the folder you're specifying? Can you post your code?

Regards,
D
dk is online now   Reply With Quote
Old Feb 25th, 2002, 04:03 AM   #7
UniversalJOC
New Member
 
Join Date: Feb 2002
Posts: 40
Default

Thakns for this DK! Very new to basic.
once i've submitted this into the module is there anything else I should be doing?

Sub ListFiles()
Dim lngLoop As Long

With Application.FileSearch
.NewSearch
.LookIn = "e:intasysreports"
.SearchSubFolders = True
.LastModified = msoLastModifiedThisWeek
.Filename = "*searchtexthere*"
.FileType = msoFileTypeExcelWorkbooks
If .Execute > 0 Then
For lngLoop = 1 To .FoundFiles.Count
Cells(lngLoop, 1) = .FoundFiles(lngLoop)
Next
End If
End With

End Sub
UniversalJOC is offline   Reply With Quote
Old Feb 25th, 2002, 04:12 AM   #8
dk
MrExcel MVP
 
Join Date: Feb 2002
Location: Sydney, Australia
Posts: 2,908
Default

Yes there is:-

.Filename="you need to put the name of your file here"

e.g.

.Filename="a*" for all filenames beginning with a

or

.Filename="*" for all files

If you want all files (not just those modified in the last week) then delete the line

.LastModified = msoLastModifiedThisWeek

If you want to search for all files then change the line

.FileType = msoFileTypeExcelWorkbooks


to this

.FileType = msoFileTypeAllFiles


The code I provided was an example. You can experiment with each of the properties of Filesearch (e.g. date last modified) to get exactly what you need.

Let me know if you have any more problems,

regards,
D



dk is online now   Reply With Quote
Old Feb 25th, 2002, 04:55 AM   #9
UniversalJOC
New Member
 
Join Date: Feb 2002
Posts: 40
Default

DK that's great. Hope you don't mind if I pick your brains a little more?
Can I set that to a command button and how?

Is there a way I can create another command button (once the files have been located) that will open and delimit them from a text file to an excel one?
UniversalJOC is offline   Reply With Quote
Old Feb 25th, 2002, 06:31 AM   #10
dk
MrExcel MVP
 
Join Date: Feb 2002
Location: Sydney, Australia
Posts: 2,908
Default

OK,

There are two types of button you can use - one from View, Toolsbars, Forms. If you place one of these on a sheet you can right click it and choose Assign Macro. Just assign the above macro to it.

The second type of button is an ActiveX control button from View, Toolbars, Control Toolbox. If you use one of these you can double click it and enter code in its Click event. E.g. double click it and paste the above code -

Code:
Private Sub CommandButton1_Click()
    Dim lngLoop As Long
    With Application.FileSearch
        .NewSearch
        .LookIn = "e:intasysreports"
        .SearchSubFolders = True
        .LastModified = msoLastModifiedThisWeek
        .Filename = "*searchtexthere*"
        .FileType = msoFileTypeExcelWorkbooks
        If .Execute > 0 Then
            For lngLoop = 1 To .FoundFiles.Count
                Cells(lngLoop, 1) = .FoundFiles(lngLoop)
            Next
        End If
    End With
End Sub
If you are using a userform then you can only use the ActiveX variety of button.

As for your second point. Once you have located the files you can use

Workbooks.OpenText Filename:=.FoundFiles(lngLoop)

after the line For lngLoop=1 to .FoundFiles.Count

Good luck,
D
dk is online now   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 08:38 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes