Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Teri
 
Posts: n/a
Default Convert font to lower case

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?
  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

Many ways, Teri. Choose your poison:
http://www.officearticles.com/excel/...ft_exce l.htm
*******************
~Anne Troy

www.OfficeArticles.com


"Teri" wrote in message
...
I have a large spreadsheet which I am using as merge data for a letter.

Some
of the data is in all caps. How can I convert this to lower case?



  #3   Report Post  
Dennis
 
Posts: n/a
Default

Teri,

Do you want everything on the source data W/S to be imported in lower case
or just certain columns?

Dennis

"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

  #4   Report Post  
Morrigan
 
Posts: n/a
Default


Make a helper column or a help spreadsheet and use LOWER() function.
Just copy and paste value after to replace original.


Teri Wrote:
I have a large spreadsheet which I am using as merge data for a letter.
Some
of the data is in all caps. How can I convert this to lower case?



--
Morrigan
------------------------------------------------------------------------
Morrigan's Profile: http://www.excelforum.com/member.php...fo&userid=7094
View this thread: http://www.excelforum.com/showthread...hreadid=388029

  #5   Report Post  
sebastienm
 
Posts: n/a
Default

Hi,

Say data is in A1.
In B1, use the LOWER( ) function: =LOWER(A1)

To convert to uppercase, use the UPPER function and to convert to Propercase
(1st letter of each word uppercase and the rest lowercase) use the PROPER()
function
--
Regards,
Sébastien


"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?



  #6   Report Post  
Teri
 
Posts: n/a
Default

Hey Dennis,

Actually, it's all of the columns. Some of the data is in all UPPERCASE,
some is not. I want it to be consistent.

Thanks for your reply!

"Dennis" wrote:

Teri,

Do you want everything on the source data W/S to be imported in lower case
or just certain columns?

Dennis

"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

  #7   Report Post  
Mike
 
Posts: n/a
Default

I dump the data into Word. Then select all text and click on Format - Change
Case. Then I dump it back to excel.

"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

  #8   Report Post  
Dennis
 
Posts: n/a
Default

Teri,

If you can use VBA (Macros)

Try this.

It will find all "Constants" (Data not formulas) on your active worksheet.
and "automatically" change all to lowercase.

No formulas of extra columns!

Be sure to save your worksheet before using it in case you do not prefer the
results!

Sub LowerCase()
Dim myRange As Range, myCell As Range
Set myRange = ActiveSheet.UsedRange.SpecialCells _(xlCellTypeConstants, 23)
On Error Resume Next
For Each myCell In myRange
myCell.Formula = LCase(myCell.Formula)
Next
MsgBox "Process Completed! Press OK to Continue"

End Sub




HTH Dennis

"Teri" wrote:

Hey Dennis,

Actually, it's all of the columns. Some of the data is in all UPPERCASE,
some is not. I want it to be consistent.

Thanks for your reply!

"Dennis" wrote:

Teri,

Do you want everything on the source data W/S to be imported in lower case
or just certain columns?

Dennis

"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

  #9   Report Post  
nowfal
 
Posts: n/a
Default


Hi,
If suppose one particular cell always to be in upper case what to
do.
with regards
nowfal


--
nowfal
------------------------------------------------------------------------
nowfal's Profile: http://www.excelforum.com/member.php...o&userid=10003
View this thread: http://www.excelforum.com/showthread...hreadid=388029

  #10   Report Post  
Anne Troy
 
Posts: n/a
Default

Hi, Sebastien! :)
*******************
~Anne Troy

www.OfficeArticles.com


"sebastienm" wrote in message
...
Hi,

Say data is in A1.
In B1, use the LOWER( ) function: =LOWER(A1)

To convert to uppercase, use the UPPER function and to convert to

Propercase
(1st letter of each word uppercase and the rest lowercase) use the

PROPER()
function
--
Regards,
Sébastien


"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter.

Some
of the data is in all caps. How can I convert this to lower case?





  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default Convert font to lower case

Copy the following macro:

Sub Change_Case()
Dim ocell As Range
Dim Ans As String
Ans = Application.InputBox("Type in Letter" & vbCr & _
"(L)owercase, (U)ppercase, (S)entence, (T)itles ")
If Ans = "" Then Exit Sub
For Each ocell In Selection.SpecialCells(xlCellTypeConstants, 2)
Select Case UCase(Ans)
Case "L": ocell = LCase(ocell.Text)
Case "U": ocell = UCase(ocell.Text)
Case "S": ocell = UCase(Left(ocell.Text, 1)) & _
LCase(Right(ocell.Text, Len(ocell.Text) - 1))
Case "T": ocell = Application.WorksheetFunction.Proper(ocell.Text)
End Select
Next

End Sub


"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Convert font to lower case

This actually is very easy way to do it. Thanks Mike, it really made my work
easier

"Mike" wrote:

I dump the data into Word. Then select all text and click on Format - Change
Case. Then I dump it back to excel.

"Teri" wrote:

I have a large spreadsheet which I am using as merge data for a letter. Some
of the data is in all caps. How can I convert this to lower case?

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
I NEED HELP with the SPELLNUMBER Function vag Excel Worksheet Functions 0 June 21st 05 08:17 AM
EXCEL:NUMBER TO GREEK WORDS vag Excel Worksheet Functions 1 June 15th 05 05:57 PM
Conversion SVC Excel Worksheet Functions 9 February 28th 05 02:29 PM
Is there a formula to spell out a number in excel? Sha-nay-nay Excel Worksheet Functions 2 December 18th 04 09:25 PM
Convert Numeric into Text Monty Excel Worksheet Functions 0 December 18th 04 09:25 PM


All times are GMT +1. The time now is 10:54 AM.

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

About Us

"It's about Microsoft Excel"