![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
07/07/2008, 13:33
|
| | Fecha de Ingreso: junio-2008
Mensajes: 8
Antigüedad: 16 años, 7 meses Puntos: 0 | |
Respuesta: excell to word??? Ya me salió!!!!!!!!!!!!!!!!!
Yuju!!!!!!!!!!
Lo logré con el siguiente código
Sub wordappli()
Dim apliword As Object
Set apliword = CreateObject("word.application")
Dim wordApp As Object
Dim wordDoc As Object
Set wordApp = CreateObject("Word.Application")
Set wordDoc = wordApp.documents.Add
'Aquí debes especificar el rango a copiar
Worksheets("julio").Range("cat").Select
Application.Selection.Copy
wordApp.Visible = True
wordApp.Selection.PasteSpecial Link:=False, DataType:=wdPasteOLEObject, Placement:=wdInLine, DisplayAsIcon:=False
apliword.Quit
End Sub
Mil gracias!!!!!!!! |