Supercharge your PowerPoint productivity with
Supercharge your PPT Productivity with PPTools - Click here to learn more.

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

Are my fonts embedded or not?

Are these fonts correct or not?

You open a PowerPoint file and notice that there's something odd about the text.

You click on a text box and look at the font in the Home tab; it says it's FontA but it sure doesn't look like it.

Unfortunately, the font formatting dialogs etc. in PowerPoint tell you what font it should, not the font that it really is. If someone chose a font that's not present on your system or that isn't embedded in the presentation, PowerPoint has substituted another font.

You know that FontA isn't installed on your PC, but if FontA is embedded in the presentation, you really are seeing FontA. If the font isn't embedded, all bets are off.

PowerPoint's Font Replacement dialog box used to give us enough information to distinguish between missing, embedded and installed fonts, but that went away, alas. While we wait for Microsoft to come to its senses and bring this useful tool back, we need a way of at least finding out whether the fonts our presentations need are embedded or not.

So ...

A bit of VBA font detective work to the rescue

Run this snippet of VBA. It will show you a message box with a list of the fonts used by the presentation and tell you whether each is embedded in the presentation or not.

Sub ListFonts()

    Dim x As Long
    Dim sReport As String

    With ActivePresentation.Fonts
        For x = 1 To .Count
            sReport = sReport & .Item(x).Name & vbTab
            If .Item(x).Embedded Then
                sReport = sReport & "Embedded" & vbCrLf
            Else
                sReport = sReport & "NOT Embedded" & vbCrLf
            End If
        Next
    End With

    MsgBox sReport

End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Supercharge your PPT Productivity with PPTools

content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Are my fonts embedded or not?
http://www.pptfaq.com/FAQ01238-Are-my-fonts-embedded-or-not.htm
Last update 03 November, 2016
Created: 03 November, 2016