Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default auto correct small leters to caps letters

How to change all the small letters in a work sheet to caps letters
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default auto correct small leters to caps letters

Your function is: UPPER
You may use it in an adjacent sheet to achieve what you want OR to run a
macro on all the used-cells in your sheen to change the appropriate letters.
Micky


"Santhosh" wrote:

How to change all the small letters in a work sheet to caps letters

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default auto correct small leters to caps letters

Hi Santhosh

If you are looking for Autocorrect then try the below. Select the sheet tab
which you want to work with. Right click the sheet tab and click on 'View
Code'. This will launch VBE. Paste the below code to the right blank portion.
Get back to to workbook and try out.

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Target.HasFormula Then Target.Value = UCase(Target.Value)
End Sub

--
Jacob


"Santhosh" wrote:

How to change all the small letters in a work sheet to caps letters

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
Small caps? XP Excel Discussion (Misc queries) 4 February 4th 10 05:08 PM
How do change a column of data in capitol letters to small letters Barb P. Excel Discussion (Misc queries) 6 November 15th 06 06:17 PM
formula for changing CAPS to small letters Stilla Excel Worksheet Functions 2 June 26th 06 07:07 PM
small caps BorisS Excel Discussion (Misc queries) 2 December 12th 05 09:51 AM
Is there a way to have a function auto correct words in ALL CAPS . Kelly Seale Excel Worksheet Functions 2 November 18th 04 09:05 PM


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