Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default how to make whole work sheet in to upper case

hi
i could not convert upper case words or sentence to lower case or visa versa

like.. if "how to make whole work sheet in to upper case" this to be made
to upper case.. how could this be done.. plz help

Regards
Mahesh
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default how to make whole work sheet in to upper case

Hi,

Try this,

Right click the sheet tab, view code and paste this in and run it

Sub versive()
For Each c In ActiveSheet.UsedRange
If Not c.HasFormula Then
c.Value = UCase(c.Value)
End If
Next
End Sub

"Mahesh" wrote:

hi
i could not convert upper case words or sentence to lower case or visa versa

like.. if "how to make whole work sheet in to upper case" this to be made
to upper case.. how could this be done.. plz help

Regards
Mahesh

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how to make whole work sheet in to upper case

Sub Upper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = UCase(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub


Sub Lower()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = LCase(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub


Sub Proper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
Cell.Formula = Application.Proper(Cell.Formula)
Next
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Thu, 3 Jul 2008 04:10:01 -0700, Mahesh
wrote:

hi
i could not convert upper case words or sentence to lower case or visa versa

like.. if "how to make whole work sheet in to upper case" this to be made
to upper case.. how could this be done.. plz help

Regards
Mahesh


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default how to make whole work sheet in to upper case

Hi Mahesh

An easier approach would be to use the =upper, =lower, and =proper
functions. Let's say you want to convert a text string in cell A1 to upper
case. Select an empty cell and enter the formula =upper(A1). Now copy and
paste special / value back into cell A1.

"Mahesh" wrote:

hi
i could not convert upper case words or sentence to lower case or visa versa

like.. if "how to make whole work sheet in to upper case" this to be made
to upper case.. how could this be done.. plz help

Regards
Mahesh

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how to make whole work sheet in to upper case

How would that be easier than running a macro to change all at once without
formulas in helper cells then copy/pasting?

Assume Mahesh had multiple columns and rows.


Gord

On Fri, 4 Jul 2008 07:08:00 -0700, BT wrote:

Hi Mahesh

An easier approach would be to use the =upper, =lower, and =proper
functions. Let's say you want to convert a text string in cell A1 to upper
case. Select an empty cell and enter the formula =upper(A1). Now copy and
paste special / value back into cell A1.

"Mahesh" wrote:

hi
i could not convert upper case words or sentence to lower case or visa versa

like.. if "how to make whole work sheet in to upper case" this to be made
to upper case.. how could this be done.. plz help

Regards
Mahesh


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
Making Sheet all Upper Case Junderwood57 Excel Discussion (Misc queries) 3 June 25th 08 02:29 PM
need to make empty cell to type upper case letters chusu New Users to Excel 2 October 4th 07 08:37 AM
Changing file in all upper case to upper and lower case Sagit Excel Discussion (Misc queries) 15 May 30th 07 06:08 AM
Change the text from lower case to upper case in an Excel work boo dave01968 Excel Discussion (Misc queries) 2 December 9th 05 10:09 AM
How do I convert all upper case excel sheet into upper and lower . DebDay Excel Discussion (Misc queries) 1 March 9th 05 09:31 PM


All times are GMT +1. The time now is 07:55 PM.

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"