Excelオフィス365でマクロ(VBA)を使用しているWordファイルに書く方法?


この記事では、Excel Office 365のマクロ(VBA)を使用してWordファイルに書き込む簡単な手順を学びます.下にしましょう!次のリンクからMS Excelの公式バージョンを取得しますhttps://www.microsoft.com/en-in/microsoft-365/excel

Excel VBAを用いたワードファイルへの書き込みプロセス
  • まず、Excelのワークシートでは、[開発]タブに移動する必要があります.
  • 次に、コードセクションの下にあるVisual Basicオプションを選択する必要があります.
  • 選択します
  • さて、以下のコードをコピーしてペーストしなければなりません.
  •  Sub WriteToWord()
    
       ''Using Early Binding
    
        'Dim wordApp As Word.Application
    
        'Dim mydoc As Word.Document
    
        'set wordApp=new word.Application 
    
        'Using late binding to create word application object
    
        'Declaring variables as objects
    
        Dim wordApp As Object
    
        Dim mydoc As Object
    
        'Initializing the object using CreateOBject Function
    
        Set wordApp = CreateObject("Word.Application")
    
        'Making word App Visible
    
        wordApp.Visible = True
    
        'Creating a new document
    
        Set mydoc = wordApp.Documents.Add()
    
        'Getting input from user
    
        myString = Application.InputBox("Write Your Text")
    
        'Writing to word
    
        wordApp.Selection.TypeText Text:=myString
    
        'inserting a new paragraph
    
        wordApp.Selection.TypeParagraph
    
    End Sub 
    
  • その後、選択してコードを保存し、ウィンドウを閉じる必要があります.
  • コードを保存する
  • 再度、Excelのスプレッドシートに移動し、[開発]タブをクリックします.
  • コードセクションでマクロオプションを選択する必要があります.
  • マクロオプションの選択
  • 次に、マクロ名を選択し、「実行」ボタンをクリックします.
  • をクリックします
  • 次に、入力ダイアログボックスを受け取り、テキストボックスに任意のテキストを入力する必要があります.
  • 入力テキスト
  • 最後に、Word文書の入力テキストを受け取ります.
  • 単語の最終入力テキスト
    もチェックします
  • Shortcut to Open VBA Editor
  • VBA InputBox Function

  • 評決
    上記の記事では、Excel Office 365のマクロ(VBA)を使用してWordファイルに書き込む簡単な手順を学ぶことができます.親切に、以下のコメントのセクションであなたのフィードバックを共有します.訪問ありがとうGeek Excel. 学習を続ける!
    また、
  • How to Change Font Color in Microsoft Excel 2007?
  • Excel Formulas to Count specific word in a range ~ Easy Tutorial!!
  • Excel Formulas to Get the Last Word of a Text String ~ Quick Method!!
  • Count the Times a Word Appears in a Cell or a Range in Excel Office 365!!
  • Excel Formulas to Remove the Last Word ~ Easy Tutorial!!