Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/10/2007, 17:39
Avatar de mrocf
mrocf
 
Fecha de Ingreso: marzo-2007
Ubicación: Bs.As.
Mensajes: 1.103
Antigüedad: 17 años, 9 meses
Puntos: 88
De acuerdo Re: seleccionar una fila en excel con macro y guardarla com txt

Intenta con:
Código:
File = "C:\Prueba.txt"
Range([A2], [Z2]).Copy
Workbooks.Add
ActiveSheet.Paste
If Dir(File) <> "" Then Kill File
ActiveWorkbook.SaveAs FileName:=File, FileFormat:=xlTextMSDOS
ActiveWindow.Close SaveChanges:=False
Saludos