PC Review


Reply
Thread Tools Rate Thread

change excel document into word document

 
 
=?Utf-8?B?bXJzYg==?=
Guest
Posts: n/a
 
      24th Aug 2007
How can I change an excel spreadsheet into a word doc
 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      24th Aug 2007
Copy from excel and paste into MSWord?



mrsb wrote:
>
> How can I change an excel spreadsheet into a word doc


--

Dave Peterson
 
Reply With Quote
 
=?Utf-8?B?bXJzYg==?=
Guest
Posts: n/a
 
      24th Aug 2007
Tried that but the text either goes all over the place or the 4 pages from
the excel sheet appear on 1 page of word and cannot be re-formatted

Dave Peterson" wrote:

> Copy from excel and paste into MSWord?
>
>
>
> mrsb wrote:
> >
> > How can I change an excel spreadsheet into a word doc

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      24th Aug 2007
Try copying the file to a new name (for safety's sake).

Then open MSWord and use File|Open to open that copy of your excel file.

You may have the same trouble, though.

mrsb wrote:
>
> Tried that but the text either goes all over the place or the 4 pages from
> the excel sheet appear on 1 page of word and cannot be re-formatted
>
> Dave Peterson" wrote:
>
> > Copy from excel and paste into MSWord?
> >
> >
> >
> > mrsb wrote:
> > >
> > > How can I change an excel spreadsheet into a word doc

> >
> > --
> >
> > Dave Peterson
> >


--

Dave Peterson
 
Reply With Quote
 
MyVeryOwnSelf
Guest
Posts: n/a
 
      24th Aug 2007
> How can I change an excel spreadsheet into a word doc

If you know how many rows and columns you want, maybe this'll help:

1. Create a table in Word with the desired number of rows and columns.

2. In Excel, select the cells to be copied, and use
Edit > Copy

3. Back in Word, select the actual table columns. That is, hover the cursor
at the top of the left-most column until the down-arrow appears, then left-
click and hold it while dragging the cursor to the right to the last column
but not beyond it. Make sure the little rectangles to the right of the
table border are not selected. Then use:
Edit > Paste cells

(I have Excel 2003 and Word 2003.)
 
Reply With Quote
 
=?Utf-8?B?cnlndXk3Mjcy?=
Guest
Posts: n/a
 
      26th Aug 2007
Try this (forgot where I got it; I didn't create it).


Sub CopyWorksheetsToWord()
' requires a reference to the Word Object library:
' in the VBE select Tools, References and check the Microsoft Word X.X
object library
Dim wdApp As Word.Application, wdDoc As Word.Document, ws As Worksheet
Application.ScreenUpdating = False
Application.StatusBar = "Creating new document..."
Set wdApp = New Word.Application
Set wdDoc = wdApp.Documents.Add
For Each ws In ActiveWorkbook.Worksheets
Application.StatusBar = "Copying data from " & ws.Name & "..."
ws.UsedRange.Copy ' or edit to the range you want to copy
wdDoc.Paragraphs(wdDoc.Paragraphs.Count).Range.InsertParagraphAfter
wdDoc.Paragraphs(wdDoc.Paragraphs.Count).Range.Paste
Application.CutCopyMode = False
wdDoc.Paragraphs(wdDoc.Paragraphs.Count).Range.InsertParagraphAfter
' insert page break after all worksheets except the last one
If Not ws.Name = Worksheets(Worksheets.Count).Name Then
With wdDoc.Paragraphs(wdDoc.Paragraphs.Count).Range
.InsertParagraphBefore
.Collapse Direction:=wdCollapseEnd
.InsertBreak Type:=wdPageBreak
End With
End If
Next ws
Set ws = Nothing
Application.StatusBar = "Cleaning up..."
' apply normal view
With wdApp.ActiveWindow
If .View.SplitSpecial = wdPaneNone Then
.ActivePane.View.Type = wdNormalView
Else
.View.Type = wdNormalView
End If
End With
Set wdDoc = Nothing
wdApp.Visible = True
Set wdApp = Nothing
Application.StatusBar = False
End Sub


--
RyGuy


"MyVeryOwnSelf" wrote:

> > How can I change an excel spreadsheet into a word doc

>
> If you know how many rows and columns you want, maybe this'll help:
>
> 1. Create a table in Word with the desired number of rows and columns.
>
> 2. In Excel, select the cells to be copied, and use
> Edit > Copy
>
> 3. Back in Word, select the actual table columns. That is, hover the cursor
> at the top of the left-most column until the down-arrow appears, then left-
> click and hold it while dragging the cursor to the right to the last column
> but not beyond it. Make sure the little rectangles to the right of the
> table border are not selected. Then use:
> Edit > Paste cells
>
> (I have Excel 2003 and Word 2003.)
>

 
Reply With Quote
 
=?Utf-8?B?Y2hhbGxhIHByYWJodQ==?=
Guest
Posts: n/a
 
      28th Aug 2007
Hi,

Refer to the topic on "Copy Excel data and charts to Word or PowerPoint" in
Microsoft Excel 2003 online help.

Challa Prabhu

"mrsb" wrote:

> How can I change an excel spreadsheet into a word doc

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
photo from pdf document pasted into word document. How to change . =?Utf-8?B?Rm9ydGUgRXhjaGFuZ2UgU3R1ZGVudA==?= Microsoft Word Document Management 3 13th Nov 2007 12:51 PM
How to transfer info automatically from an excel data base to a word document OR an excel document? Starriol Microsoft Access 2 1st Nov 2005 03:43 PM
How to transfer info automatically from an excel data base to a word document OR an excel document? Starriol Microsoft Access External Data 2 31st Oct 2005 08:14 PM
How to change a excel document into a word document? =?Utf-8?B?d2FubmFrbm93?= Microsoft Excel Misc 1 27th Jul 2005 09:37 PM
How to change a Publisher document to a Word document? =?Utf-8?B?Ympj?= Microsoft Access Getting Started 1 4th Mar 2005 08:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:25 PM.