Como cambiar este código paraq ue me pregunte la ruta y no que yo la ponga directo en el código
Sub ExportarFileTxt()
Ruta = "C:\Users\jjimenez\Pictures\creacion_de_txt\prueba1.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
Next i
Close #1
1 Respuesta
Respuesta de Julián González Cabarcos
2