TheConeHead
Programmer
Does anyone know if there is a way to convert an excel file to word or pdf?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub PushSelectionToWord()
Dim wdApp As Object
Set wdApp = GetObject(, "Word.Application")
Selection.Copy
wdApp.Selection.Paste
Set wdApp = Nothing
End Sub