Macro para generar formato txt de acuerdo a ejemplo
De favor me podrían ayudar con la siguiente situación, ya que no he podido encontrarla, la situación es la siguiente:
Tengo un archivo en excel que debo convertir a txt, lo hago utilizando el siguiente código:
Sub Exportarfiletxt()
ruta = "D:\test.txt"
lastrow = Cells(Rows.Count, 1).End(xlUp).Row
Open ruta For Output As #1
For i = 1 To lastrow
Print #1, Cells(i, 1).Value; Cells(i, 2).Value; Cells(i,3).Value; Cells(i, 4).Value; Cells(i, 5).Value; Cells(i, 6).Value; Cells(i, 7).Value; Cells(i, 8).Value; Cells(i,9).Value; Cells(i, 10).Value; Cells(i, 11).Value; Cells(i, 12).Value; Cells(i, 13).Value; Cells(i, 14).Value; Cells(i, 15).Value
Next i
Close #1
End Sub
Pero me genera el txt de la siguiente manera:
y debería generarlo con el formato de la siguiente manera:
Les agradecería mucho, si alguien me pudiera orientar.
Anexo archivo xls, para mejor comprensión.Archivo de prueba