ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Convert font to lower case (https://www.excelbanter.com/excel-discussion-misc-queries/35807-convert-font-lower-case.html)

Teri

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?

Anne Troy

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?




Dennis

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?


Morrigan


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


sebastienm

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?


Teri

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?


Mike

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?


Dennis

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?


nowfal


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


Anne Troy

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?




PlayingToAudienceOfOne

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?


Bharat

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?



All times are GMT +1. The time now is 04:06 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com