VBA to Print Excel Range to Notepad Help

rollnation2

New Member
Joined
Mar 18, 2021
Messages
25
Office Version
  1. 2016
Platform
  1. Windows
Hello Power Users!

I want to create a macro to export a specific range, in a specific workbook to a .txt file. Then title the .txt file with a name from a cell within the workbook.

Data I want exported to notepad as text:
1.Range: B2:N34 ---> Sometimes this range will be larger, so I would like it to be dynamic, exporting everything in the range (no blanks).
2. I want the name of the .txt file to be what is in cell T2 of the same sheet.

Sheetname: "KTR ERP Upload FY22"

Image attached

Any help is appreciated!!
 

Attachments

  • KTR ERP UPLOAD FY22 image.PNG
    KTR ERP UPLOAD FY22 image.PNG
    114.1 KB · Views: 14

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I was able to get semi functional code working.
Need to refine the VBA to only print columns B:N, starting at row 2 through the end,

Here is the code that prints everything on the WS

Sub ExportText()

Open "h:\ERPUpload.txt" For Output As #1
With Sheets("KTR ERP Upload FY22")
iLastRow = .Range("b" & Rows.Count).End(xlUp).Row
iLastCol = .Cells(1, Columns.Count).End(xlToLeft).Column
For i = 1 To iLastRow
For j = 1 To iLastCol
If j <> iLastCol Then 'keep writing to same line
Print #1, .Cells(i, j),
Else 'end the line
Print #1, .Cells(i, j)
End If
Next j
Next i
End With
Close #1
Shell "notepad.exe ""h:\ERPupload.txt", vbNormalFocus

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,820
Members
449,049
Latest member
cybersurfer5000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top