#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Cell Defaults

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Cell Defaults

Use the CAPS LOCK key
--
Gary''s Student


"Mosaic Steve" wrote:

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Cell Defaults

Not the answer im looking for.. I need a default set so anyone who opens the
spreadsheet and enters data, the text will automatically default to caps. I
can do this in VB and other programs. Not sure if Excel has that feature.

"Gary''s Student" wrote:

Use the CAPS LOCK key
--
Gary''s Student


"Mosaic Steve" wrote:

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Cell Defaults

Nothing built into excel, but you can use an event macro.

See Chip Pearson's site:
http://cpearson.com/excel/case.htm

You can read more about events at:
Chip Pearson's site:
http://www.cpearson.com/excel/events.htm

David McRitchie's site:
http://www.mvps.org/dmcritchie/excel/event.htm

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Mosaic Steve wrote:

Not the answer im looking for.. I need a default set so anyone who opens the
spreadsheet and enters data, the text will automatically default to caps. I
can do this in VB and other programs. Not sure if Excel has that feature.

"Gary''s Student" wrote:

Use the CAPS LOCK key
--
Gary''s Student


"Mosaic Steve" wrote:

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Cell Defaults

I understand. You can control CAPS LOCK. See:


http://groups.google.com/group/micro...b7257930476d1d

Include a call in a workbook open event macro to set CAPS LOCK on.

To learn about event macros. see:


http://www.cpearson.com/excel/events.htm



--
Gary's Student


"Mosaic Steve" wrote:

Not the answer im looking for.. I need a default set so anyone who opens the
spreadsheet and enters data, the text will automatically default to caps. I
can do this in VB and other programs. Not sure if Excel has that feature.

"Gary''s Student" wrote:

Use the CAPS LOCK key
--
Gary''s Student


"Mosaic Steve" wrote:

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Cell Defaults


Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column 8 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.

Operates on columns A through H.

Change the Target.Column = 8 to adjust.


Gord Dibben MS Excel MVP

On Thu, 14 Sep 2006 06:00:02 -0700, Mosaic Steve
wrote:

Not the answer im looking for.. I need a default set so anyone who opens the
spreadsheet and enters data, the text will automatically default to caps. I
can do this in VB and other programs. Not sure if Excel has that feature.

"Gary''s Student" wrote:

Use the CAPS LOCK key
--
Gary''s Student


"Mosaic Steve" wrote:

Can I set cells to default to CAPS only when text is entered?

Thanks,
Steve


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
Compiling macro based on cell values simonsmith Excel Discussion (Misc queries) 1 May 16th 06 08:31 PM
Instead of a negative number, I'd like to show zero... Dr. Darrell Excel Worksheet Functions 6 December 7th 05 08:21 PM
Cell color based upon cell value My View Excel Discussion (Misc queries) 11 July 6th 05 03:59 AM
cell color index comparison MINAL ZUNKE New Users to Excel 1 June 30th 05 07:11 AM
up to 7 functions? ALex Excel Worksheet Functions 10 April 12th 05 06:42 PM


All times are GMT +1. The time now is 04:09 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"