About 2,040,000 results
Open links in new tab
  1. How to Copy Data/Content from Word to Excel using VBA

    Here in this article I'll show you how to copy data (or content) with text font name, font size, underline, color etc. from Word to Excel using VBA

  2. Extract Data from Word Document to an Excel SpreadSheet

    I have a requirement to extract a value from a word document on a daily basis and write it to an excel workbook. I currently do this manually and it is border line regarding the most efficient …

  3. vba - Macro to export MS Word tables to Excel sheets - Stack Overflow

    Dec 13, 2016 · To do this, go to the VBA (keyboard Alt-TMV), insert a macro module (Alt-IM), and paste the code into the code pane. Run the macro from the Excel interface as you would any …

  4. vba - Extracting data from Word to Excel - Stack Overflow

    Jun 28, 2019 · Set wdDoc = wdApp.Documents.Open(FileName:=strFolder & "\" & strFile, AddToRecentFiles:=False, Visible:=False) With wdDoc. j = 0. For Each FmFld In .FormFields. …

  5. Extract Word Form Field Data to Excel | MrExcel Message Board

    Jun 9, 2014 · Try this Excel macro, which loops through all *.doc* files in the specified folder and puts the form fields in Sheet1. The file names are put in column A and the field names are put …

  6. VBA Copy Word File Data To Excel | MrExcel Message Board

    Apr 29, 2014 · Actually, i want to copy the header just only from the first page of word file and paste it in Cell K1 in "Word" tab. VBA Code: Dim docSource As Document Set docSource = …

  7. Copy data from Single or Multiple Tables from Word to Excel using VBA

    Microsoft provides Table object (for word) in VBA, which has a collection of methods and properties with which you to read and extract data from multiple tables in a word doc, from …

  8. How To Extract Data From Word To Excel Using Vba

    Sep 20, 2023 · To extract data from Word to Excel using VBA, you can follow these steps: Open Excel and create a new workbook. Press Alt + F11 to open the VBA editor. In the VBA editor, …

  9. Import Data from Word Table to Excel sheet - Excel-VBA Solutions

    Below is an example code to import first table of the word document to an Excel sheet. Remember to add a reference to the Word-library. Dim wrdApp As Word.Application

  10. Help with VBA to extract data from Word to Excel

    Mar 29, 2018 · I need some help modifying code that I found here and is shown below, which copies entries from tables in Word into Excel. The modifications I would like to make are to …