My First Macro in Microsoft Word (Simple VBA Tutorial, Visual Basic, Record Macro, How to)

Published: 02 November 2021
on channel: Vaclav Krejci
8,143
91

Learn how to record a simple macro in Microsoft Word to speed up your workflow and make your work easier. Perfect tutorial for absolute beginners.

VBA CODE:
---------------------------------------------------------------------------------
1st version:

With Selection.Font
.Spacing = .Spacing + 1
End With
---------------------------------------------------------------------------------
2nd version:

On Error Resume Next
With Selection.Font
.Spacing = .Spacing + 1
End With
---------------------------------------------------------------------------------
3rd version:

For Each Char In Selection.Characters
Char.Font.Spacing = Char.Font.Spacing + 1
Next Char

---------------------------------------------------------------------------------
---------------------------------------------------------------------------------

Word tutorials:    • Microsoft Word 2013 tutorials  
E-book    • Free e-book - 20.14 Text Effects in M...  
  / besttexteffectsinword  
http://issuu.com/upir/docs/best_text_...


Watch video My First Macro in Microsoft Word (Simple VBA Tutorial, Visual Basic, Record Macro, How to) online without registration, duration hours minute second in high quality. This video was added by user Vaclav Krejci 02 November 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 8,143 once and liked it 91 people.