Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have written a simple macro that opens a .csv file, copies the data
from the file and pastes them in another worksheet, then closes the .csv file. The macro works perfectly when I step through the code one step at a time. But when I try to run it normally, it stops after I open the ..csv file. I get no error messages, it just quits with my cursor in cell A1 of the .csv file. The code is below with a few comment lines that show you where the error seems to happen. Thanks for any help you can give me. Dave dvt at psu dot edu Sub get_raw_data() CurrentFile = Windows(1).Caption ' filenames follow the format c:\testNNN.csv DirName = "c:\" FileNum = InputBox("Enter the data file number") Filename = "test" & FileNum & ".csv" Workbooks.Open Filename:=DirName & Filename ' macro works up to this point, then stops ' select all the data in the sheet and copy Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select Selection.Copy ' Open the original file and paste the data into that file Windows("filename.xls").Activate Selection.PasteSpecial Paste:=xlPasteValues, _ Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False ' close the .csv file Windows(Filename).Activate ActiveWorkbook.Close End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Opening a file stops a Macro | Excel Worksheet Functions | |||
Macro stops at random places. | Excel Discussion (Misc queries) | |||
Macro repeats and then stops | Excel Discussion (Misc queries) | |||
Fill column macro that stops | Excel Programming | |||
Macro stops when another workbook is open | Excel Programming |