Excel to notepad
Sub TestNotePad() '// The range to copy - written freehand so change as needed Range("A1:B55").Copy '// Start Notepad with focus Shell "notepad.exe", vbNormalFocus '// Send the standard CTRL+V. Pastes to the '// active window (Notepad, hopefully) SendKeys "^V" '// Back to the top of the file SendKeys "^{HOME}" End Sub ------------------- cebu1014 Author Commented: 2013-05-22 I got it to work using your above routine as a guide. I removed some of the lines though and added TRUE at end of sendkeys command in order to get it to work. Sub CopyToNotepad() Range("A1").Select Range(Selection, Selection.End(xlDown)).Select Selection.Copy Shell "Notepad C:\Users\mw1\my Documents\abc.csv", vbNor...