Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can someone please talk me through how to change a whole spreadsheet that is
in capitals to proper case, i know how to input the formula i just cant get it working so the whole document will change not just one cell. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() You would have to do it one column at a time using formulas. A vastly simpler way is to use VBA code... '-- Sub PropThemUp() Dim rCell As Range For Each rCell In ActiveSheet.UsedRange rCell.Formula = Application.WorksheetFunction.Proper(rCell.Formula ) Next End Sub '-- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming - check out XL Extras for converting text case) "Amanda17" wrote in message Can someone please talk me through how to change a whole spreadsheet that is in capitals to proper case, i know how to input the formula i just cant get it working so the whole document will change not just one cell. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I change from upper case to proper case in excel 2002 | Excel Discussion (Misc queries) | |||
Changing Entries to Proper and Upper Case Q | Excel Worksheet Functions | |||
excel'03 how to convert a column from upper case to proper case | Excel Discussion (Misc queries) | |||
Macro for changing text to Proper Case | Excel Worksheet Functions | |||
Changing Upper case to Proper Case | Excel Worksheet Functions |