Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Greetings,
I recorded and modified the ImportRatedData Sub below and it does an ok job. What would make it really good would be to have it search a path and its subfolders for each file named "Rated.dat" and execute the ImportRatedData Sub. I know I need to use the Workbooks.OpenText Filename:= for each time an occurance of "Rated.dat" is found but how to do so, I'm not so clear on. Thanks, Sub ImportRatedData() ' ' ImportRatedData Macro ' Macro recorded 5/13/2009 by innesh ' ' Keyboard Shortcut: Ctrl+i ' Dim RatedHeaderCopy Dim RatedRowCopy As Integer Dim RatedRowPaste As Integer Dim ActiveTab RatedHeaderCopy = "A1:A7" ' ActiveTab = "DDEC" ' RatedRowCopy = 10 ' RatedRowPaste = 14 ' Range("A3").Select Windows("Rated.dat").Activate If Right(Range("A7"), 4) = "DDEC" Then ActiveTab = "DDEC" ElseIf Right(Range("A7"), 4) = "ADEC" Then ActiveTab = "ADEC" ElseIf Right(Range("A7"), 4) = "MDEC" Then ActiveTab = "MDEC" End If Range(RatedHeaderCopy).Select Selection.Copy Windows("4K_Data_for_Limit_Modification.xls").Acti vate Sheets(ActiveTab).Select RatedRowPaste = Range("A65536").End(xlUp).Row + 1 Range("A" & RatedRowPaste).Select Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Windows("Rated.dat").Activate RatedRowCopy = Range("A65536").End(xlUp).Row Range("E" & RatedRowCopy, "ER" & RatedRowCopy).Select Application.CutCopyMode = False Selection.Copy Windows("4K_Data_for_Limit_Modification.xls").Acti vate Range("H" & RatedRowPaste).Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Range("A" & RatedRowPaste + 1).Select ActiveWorkbook.Save Windows("Rated.dat").Close End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA to ask for file location and use to open DB | Excel Worksheet Functions | |||
File Open Dialogue Box to a Specified Location | Excel Programming | |||
Open File from FTP Location | Excel Discussion (Misc queries) | |||
Open file on FTP location | Excel Programming | |||
Open File Location | Excel Programming |