ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   All Caps, / All Lower, not the function (https://www.excelbanter.com/excel-discussion-misc-queries/171909-all-caps-all-lower-not-function.html)

nastech

All Caps, / All Lower, not the function
 
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.

Jim Cone

All Caps, / All Lower, not the function
 

No special button in Excel, you have to use one of the existing functions or write one.
However, why not use the Caps Lock key on the keyboard?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming - check out "XL Extras")



"Nastech"
wrote in message
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.

nastech

All Caps, / All Lower, not the function
 
changes from 1 col to the next, lower, upper..

"Jim Cone" wrote:


No special button in Excel, you have to use one of the existing functions or write one.
However, why not use the Caps Lock key on the keyboard?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming - check out "XL Extras")



"Nastech"
wrote in message
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.


JMB

All Caps, / All Lower, not the function
 
Generally, I just use =UPPER(A1) in an empty cell, copy it down, then
copy/paste special/values over my original data and delete the helper column.
If you want a button, you could use a small macro and assign it to a button:

Sub UpperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = UCase(rngCell.Value)
Next rngCell

End Sub

Sub LowerCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = LCase(rngCell.Value)
Next rngCell

End Sub


Sub ProperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = Application.Proper(rngCell.Value)
Next rngCell

End Sub


"Nastech" wrote:

changes from 1 col to the next, lower, upper..

"Jim Cone" wrote:


No special button in Excel, you have to use one of the existing functions or write one.
However, why not use the Caps Lock key on the keyboard?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming - check out "XL Extras")



"Nastech"
wrote in message
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.


Gord Dibben

All Caps, / All Lower, not the function
 
Be aware the this code will wipe out any formulas you may have in the range.

Best to go with this revision to look for formulas.............

Sub Upper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
If Not Cell.HasFormula Then
Cell.Value = UCase(Cell.Value)
End If
Next
Application.ScreenUpdating = True
End Sub

Or this one which is slightly shorter....................

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


Gord Dibben MS Excel MVP

On Sun, 6 Jan 2008 21:44:03 -0800, JMB wrote:

Generally, I just use =UPPER(A1) in an empty cell, copy it down, then
copy/paste special/values over my original data and delete the helper column.
If you want a button, you could use a small macro and assign it to a button:

Sub UpperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = UCase(rngCell.Value)
Next rngCell

End Sub

Sub LowerCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = LCase(rngCell.Value)
Next rngCell

End Sub


Sub ProperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = Application.Proper(rngCell.Value)
Next rngCell

End Sub


"Nastech" wrote:

changes from 1 col to the next, lower, upper..

"Jim Cone" wrote:


No special button in Excel, you have to use one of the existing functions or write one.
However, why not use the Caps Lock key on the keyboard?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming - check out "XL Extras")



"Nastech"
wrote in message
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.



JMB

All Caps, / All Lower, not the function
 
good call - thanks!

"Gord Dibben" wrote:

Be aware the this code will wipe out any formulas you may have in the range.

Best to go with this revision to look for formulas.............

Sub Upper()
Dim Cell As Range
Application.ScreenUpdating = False
For Each Cell In Selection
If Not Cell.HasFormula Then
Cell.Value = UCase(Cell.Value)
End If
Next
Application.ScreenUpdating = True
End Sub

Or this one which is slightly shorter....................

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


Gord Dibben MS Excel MVP

On Sun, 6 Jan 2008 21:44:03 -0800, JMB wrote:

Generally, I just use =UPPER(A1) in an empty cell, copy it down, then
copy/paste special/values over my original data and delete the helper column.
If you want a button, you could use a small macro and assign it to a button:

Sub UpperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = UCase(rngCell.Value)
Next rngCell

End Sub

Sub LowerCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = LCase(rngCell.Value)
Next rngCell

End Sub


Sub ProperCase()
Dim rngCell As Range

For Each rngCell In Selection.Cells
rngCell.Value = Application.Proper(rngCell.Value)
Next rngCell

End Sub


"Nastech" wrote:

changes from 1 col to the next, lower, upper..

"Jim Cone" wrote:


No special button in Excel, you have to use one of the existing functions or write one.
However, why not use the Caps Lock key on the keyboard?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming - check out "XL Extras")



"Nastech"
wrote in message
Hi, am wondering if there is Custom Format, or a obtainable button (as in
ms-word for all caps). Have a strong need to have some columns data entered
just lower case, and some upper. Guesse would suggest include a "proper"
button as well.
thanks.





All times are GMT +1. The time now is 12:38 PM.

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