i have one word and i want to get it written in all available fonts , how can i do this ?

john65442

New Member
Joined
Feb 25, 2011
Messages
13
Hi:-
i have one word
and i want to get a list of the same word written in all fonts
how can i get it ?can i get it on word document ?
(please notice that i have a large set of fonts installed in my word document)
Thank you
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You can use a macro like the following:
Code:
Sub ListFonts()
  Dim ListFont as Variant
    Application.ScreenUpdating = False
    For Each ListFont in Fontnames
      With Selection
        .Font.Name = ListFont
        .Font.Size = 12
        .TypeText ListFont
        .TypeText Text := Chr(11)
        .TypeText = InputBox("What is the text to replicate?")
        .TypeText Text := Chr(11)
        .InsertParagraphAfter
        .Movedown Unit := wdParagraph, Count := 1, Extend := wdMove
      End With
    Next ListFont
End sub
 
Upvote 0
i do not know how to insert this code in to the document . could you please tel me how to use? it because i am a complete beginner i know nothing about macros
in which kind of document should i put it ? in excel document or in word document ?
 
Upvote 0

Forum statistics

Threads
1,225,613
Messages
6,186,003
Members
453,334
Latest member
Prakash Jha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top