Uppercase only fonts?

markvan

New Member
Joined
Sep 26, 2007
Messages
24
Are there any fonts in Excel 2000 that are Uppercase only? Thanks in advance.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
While in Excel, click on Format, Cells, and select the Fonts tab. Then, in the upper-left-hand area, use the scroll-bar down-arrow there to go to one of the two font types that I indicated, then, press OK. Done.
 
Upvote 0
Possibly, you are missing some file, as I have it when I follow the steps I outlined for you. You might try re-installing Excel, using your Excel CD. Other than that, I cannot help you farther, sorry.
 
Upvote 0
It appears that my company only wants standard fonts installed. However, I've acquired the Felix font, but the problem now is that it shows up in the Outlook, Word and Access font menus, but not Excel. Any ideas?
 
Upvote 0
I have no idea at all as to why you don't seem to be able to get the fonts I get in Excel. Perhaps some other, more knowledgeable person will read this and help you. Good luck!
 
Upvote 0
Rather than use an uppercase only font, can you use macros to convert entries to uppercase?

Something like:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Target = UCase(Target)
Application.EnableEvents = True
End Sub
in the sheet module...
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,377
Members
448,955
Latest member
BatCoder

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