Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб Excel VBA Macro: Create Word Document (and Write with Excel) в хорошем качестве

Excel VBA Macro: Create Word Document (and Write with Excel) 1 год назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Excel VBA Macro: Create Word Document (and Write with Excel)

Excel VBA Macro: Create Word Document (and Write with Excel). In this video, we go over how to use excel vba to open a new word doc and type text into the document. We go over how to type directly from a string in our code, and by using a string from a cell in an excel workbook. Code: Sub create_word_doc() Dim objWord Dim objDoc Set objWord = CreateObject("Word.Application") Set objDoc = objWord.Documents.Add With objWord .Visible = True .Activate .Selection.typetext ("Hello World!") .Selection.typeparagraph .Selection.typetext (ThisWorkbook.Sheets("Sheet1").Cells(1, 1).Text) End With End Sub #ExcelVBA #ExcelMacro

Comments