2 Ways to Copy Texts from Word to Excel with Each Word in a Separate Cell

In this post, we are thrilled to share with you 2 ways to copy texts from Word to Excel with each word in a separate cell.

If you are a linguist, you probably need to do the word frequency count a lot. Then our topic today shall be a great help. The 2 methods bellow will enable you to paste texts from a document to excel sheet and list each word in a column cell.Copy Texts from Word to Excel with Each Word in a Separate Cell

Method 1: Make Use of the “Find and Replace” Option

  1. To begin with, make a copy of the target document. This is extremely important and we will conduct all operations in the copy file to prevent from data loss.
  2. Secondly, select all target texts and apply them with “Normal” style. To do this, press “Alt+ Ctrl+ Shift+ S” to open the “Styles” window. Then find and click “Normal” style.
  3. Thirdly, press “Ctrl+ H” to trigger the “Find and Replace” box.
  4. Put cursor at the “Find what” text box and enter a space there.
  5. Next place cursor at “Replace with” text box and enter “^p” there.
  6. Then click “Replace All”.Enter a space in "Find what" box->Enter "^p" in "Replace with" box->Click "Replace All"
  7. Click “No” in the next box popping up.Click "No"
  8. Now you can see each word is in one line. But there is also a blank line as follows:A blank line appears

So to remove it, you need to invoke the “Find and Replace” box again.

  1. This time enter “^p^p” in “Find what” text box and “^p” in “Replace with” box.
  2. Click “Replace All”.Enter "^p^p" in "Find what" text box->Enter "^p" in "Replace with" text box->Click "Replace All"
  3. Now press “Ctrl+ C” to copy the word list.
  4. Open Excel and press “Ctrl+ V” to paste the list.Word list in Excel sheet

Method 2: Use VBA Codes to Reduce Workload

  1. Similarly, make a copy first and select all target texts.
  2. Next press “Alt+ F11” to open VBA editor.
  3. Then click “Normal” and “Insert” in order.
  4. And choose “Module” to create a new one.Click "Normal"->Click "Insert"->Click "Module"
  5. Double click the module to open it and paste the following codes:
Sub CopySelectParagraphWordByWordToExcel()
 
  If Selection.Range <> "" Then
    Selection.Style = ActiveDocument.Styles("Normal") 
 
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
      .Text = " "
      .Replacement.Text = "^p"
      .Forward = True
      .Wrap = wdFindStop
      .Format = False
      .MatchCase = False
      .MatchWholeWord = False
      .MatchByte = True
      .MatchWildcards = False
      .MatchSoundsLike = False
      .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
 
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
      .Text = "^p^p"
      .Replacement.Text = "^p"
      .Forward = True
      .Wrap = wdFindStop
      .Format = False
      .MatchCase = False
      .MatchWholeWord = False
      .MatchByte = True
      .MatchWildcards = False
      .MatchSoundsLike = False
      .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
    Selection.Copy
 
    MsgBox ("Now you can just open a Excel worksheet to paste the text")
  Else
    MsgBox ("There is no selected text ")
  End If
 
End Sub
  1. Then click “Run” button.Paste codes->Click "Run"
  2. Next there will be a message box indicating what you need to do next.A Message Box
  3. Open Excel and press “Ctrl+ V” to paste the texts there. The effect is as same as that in method 1.

Deal with Word Document Errors

Have you ever fall the victim to Word corruption? If so, you will understand how desperate one might get. Therefore, it becomes more important than ever to get a qualified repairing tool to fix your broken document.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including recover xlsx and pdf repair software products. For more information visit www.datanumen.com

One response to “2 Ways to Copy Texts from Word to Excel with Each Word in a Separate Cell”

  1. Attractive component to content. I simply stumbled upon your site and in accession capital to claim that I acquire actually enjoyed account your weblog posts. Anyway I’ll be subscribing for your feeds or even I achievement you get right of entry to constantly quickly.

Leave a Reply

Your email address will not be published. Required fields are marked *