Macro to delete blank rows in Notepad

Hansulet

Board Regular
Joined
Jan 24, 2013
Messages
164
Office Version
  1. 2021
Platform
  1. Windows
I need a code to delete blank rows in txt file (Opened with Notepad)
Or something to delete blank rows in specified txt file.

I need these becaue a have a code in Excel to create a txt file but these file is created with blank rows (I don't know why)

'Salveaza ordine.txt
Sheets("ordine plata").Select

Dim fileHandle As Integer
Dim thisRow As Long


fileHandle = FreeFile
Open "D:\OPFV 2016 - OP\ordine.txt" For Output As #fileHandle
For thisRow = 1 To LastRow
Print #fileHandle , Cells(thisRow, 1).Text
Next thisRow
Close Filename
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
I need these becaue a have a code in Excel to create a txt file but these file is created with blank rows (I don't know why)
I would recommend trying to fix your VBA code that is creating the file first.
Is the code you posted a snippet of that code?
I would look at your LastRow calculation. The code you posted doesn't show how that is being calculated.
Note that if you are deleting any rows after that calculation, you may need to recalculate it before running the snippet of code you posted.
 
Upvote 0
LastRow = Cells(Rows.Count, "A").End(xlUp).Row

Anyway, I need a code to save the sheet as txt file. Can you help me?
 
Upvote 0
Please post the entire code procedure.
The timing of when you calculate the last row may play an important role here, so we need to see where it is and how it interacts with the rest of the code.
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,588
Members
449,174
Latest member
chandan4057

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