Different fonts using macros

  • Thread starter Tazzy via OfficeKB.com
  • Start date
T

Tazzy via OfficeKB.com

This may seem a simple question, but I am fairly new to macros, but I do have
a reasonable command of Word. I have use a simple macro to display my
address, date, etc on a letterhead. This works fine, but the font I selected
never appears, just the document default font. Can someone please tell me
how to correct this, many thanks
:)
 
J

Jezebel

As a programming task, best approach is to define a style with the font
(etc) you want, then from code apply that style. If you really want to apply
manual formatting, use something like

With MyRange.Font
.Name = "Arial Black"
.Size = 24
:
end with


But why not just set up a letterhead template?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top