Determine actual font used instead of custom font

alevy

New Member
Joined
Aug 2, 2018
Messages
1
I have an Excel workbook formatted with a custom font that is not installed on my computer. How can I determine what font Excel is actually rendering the text in?

It is not my default Excel font (Calibri) because when I change the font to Calibri, the appearance of the text changes.

It is not the actual font indicated by the Format Cells dialog because if I do install that font, the appearance of the text changes (and fonts cannot be embedded in Excel workbooks).
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
@alevy just for giggles see what the following produces as a result:

insert the following function code into a module:

VBA Code:
Function WhichFontIs(Cel As Range)
    WhichFontIs = Cel.Font.Name
End Function

Then on your sheet with the 'mysterious' font, In a blank cell insert the following formula:

VBA Code:
=whichfontis(A1)

A1 being a cell that has a 'mysterious' font.

See what the result is to that.
 
Upvote 0
AFAIK it's not possible to tell which font is actually being used, only which font it should be.
 
Upvote 0
It's the font that the cell format specifies.
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,618
Members
449,092
Latest member
amyap

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