Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing upper case to lower in Excel

Status
Not open for further replies.

cherie30

MIS
Joined
Mar 3, 2003
Messages
1
Location
GB
Is there a way I can change a spead sheet in excel from upper case to lower case?
 
Hi,

There are spreadsheet functions; UPPER, LOWER, PROPER.

But, like any function, they reference an external cell.

So, if you want to "convert" ALL the cells in a sheet, you will have to do it from another sheet, OR find an area on the original sheet (less than half the sheet) to put your functions in.

The alternative is to run a simple VBA routine like this
Code:
For each c in ActiveSheet.UsedRange
   c.Value = LCase(c.Value)
Next
hope this helps :-)


Skip,
Skip@theofficeexperts.com
 
What do you mean by "Spredsheet" - every single cell value? That would need VBA.

If you're just after a formula to convert a cell value (say in cell A1) to uppercase, your formula is:

Code:
=UPPER("A1")

A similar function exists for lower case.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top