Segue uma possibilidade
Sub ExportColum()
Dim Caminho As String, Arquivo As String
Dim X As Integer, W As Integer, Linha As Integer
'Determina o diretorio a ser utilizado, neste caso mesmo diretorio da planilha
Caminho = ThisWorkbook.Path & Application.PathSeparator
For X = 1 To Sheets().Count
If Sheets(X).Name <> "GERAL" Then
Arquivo = Sheets(X).Name & ".txt"
Open Caminho & Arquivo For Output As #1
'Determina a ultima coluna com dados
W = Sheets(X).Cells(4, Cells.Columns.Count).End(xlToLeft).Column
For Linha = 5 To Sheets(X).Cells(Cells.Rows.Count, W).End(xlUp).Row
Print #1, Sheets(X).Cells(Linha, W).Value
Next
Close #1
End If
Next
End Sub
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 05/02/2018 11:09 am