Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Format Excel cells for "all caps", with Office 07?

How do I format Excel cells for "all caps", with Office 07? That is to say
that I use an Excel form frequently, which has several cells that require a
single alpha character fill in. When the form prints, the lower case
characters appear small and less predominant then the body text and numbers.
Thanks for your suggestions.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Format Excel cells for "all caps", with Office 07?

My best suggestion is to simply use the Caps Lock key. That's what it's for.

If that doesn't work, you can use the Upper function, either in the
worksheet or in VBA, to change data to upper case.

Regards
Fred

"Louisana Jim" <Louisana wrote in message
...
How do I format Excel cells for "all caps", with Office 07? That is to
say
that I use an Excel form frequently, which has several cells that require
a
single alpha character fill in. When the form prints, the lower case
characters appear small and less predominant then the body text and
numbers.
Thanks for your suggestions.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Format Excel cells for "all caps", with Office 07?

Excel doesn't have this ability.

You could use a helper cell with a formula like:
=upper(a1)

You could use a macro that changes the case (from Chip Pearson's site):
http://www.cpearson.com/Excel/ChangingCase.aspx

Chip shows how to use a dedicated macro that changes the case of the cells in
the current selection and he shows how to use an event macro that changes the
value to upper case when the user types it in.

Another option would be to install a "caps-only" font (search google) and format
that cell using that font. Remember that anyone you share that workbook with
will have to have the font installed if they want the same look as you.


Louisana Jim wrote:

How do I format Excel cells for "all caps", with Office 07? That is to say
that I use an Excel form frequently, which has several cells that require a
single alpha character fill in. When the form prints, the lower case
characters appear small and less predominant then the body text and numbers.
Thanks for your suggestions.


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Format Excel cells for "all caps", with Office 07?

As Fred points out.............you cannot format a cell to UPPER case.

You can have a helper cell with the UPPER function or use caps lock or VBA
code.

Worksheet event code to be stored in the worksheet module.

Works on columns A and B................post back if need different range or
ranges.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column 2 Then Exit Sub
On Error GoTo ErrHandler
Application.EnableEvents = False
Target.Formula = UCase(Target.Formula)
ErrHandler:
Application.EnableEvents = True
End Sub

Right-click on the sheet tab and "View Code"

Copy/paste the code into that module.


Gord Dibben MS Excel MVP

On Sat, 23 Jan 2010 09:46:01 -0800, Louisana Jim <Louisana
wrote:

How do I format Excel cells for "all caps", with Office 07? That is to say
that I use an Excel form frequently, which has several cells that require a
single alpha character fill in. When the form prints, the lower case
characters appear small and less predominant then the body text and numbers.
Thanks for your suggestions.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 348
Default Format Excel cells for "all caps", with Office 07?

Louisana Jim wrote:
How do I format Excel cells for "all caps", with Office 07? That is to say
that I use an Excel form frequently, which has several cells that require a
single alpha character fill in. When the form prints, the lower case
characters appear small and less predominant then the body text and numbers.
Thanks for your suggestions.


Using Caps Lock is the simple straightforward solution, subject to easy
user override. I like the suggested idea of formatting the cell in an
all-caps font, especially if the file isn't going anywhere outside of
Jim's computer.

Bill
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how can I disable "cutting cells" and "drag and drop "in excel ? mwoody Excel Worksheet Functions 4 August 25th 08 03:53 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Change Office 2007 delaut "save" format Bob Newman Excel Discussion (Misc queries) 1 October 21st 07 09:44 PM
How can I use the "Small Caps" Font option in an Excel speadsheet execassist1976 Excel Discussion (Misc queries) 2 October 4th 06 10:40 PM
Excel, error:" too many cells format" Safi Excel Worksheet Functions 2 July 3rd 06 06:08 PM


All times are GMT +1. The time now is 04:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"