Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
In a spreadsheet that I made, there is a column with all types of text: all
upper, all lower, proper. It could be a long task to re-type each cell. I'd like to convert this entire column to all proper. How can this be easily done? Thanks in advance for your help. |
#2
![]() |
|||
|
|||
![]()
Hi Harvey
it can be done via the use of a helper column insert a column to the right of your column then type the following formula in cell 1 of the new column =Proper(A1) where A is the column letter of the column you want to fix move your cursor over the bottom right hand corner of this cell and double click the formula should be filled down the column. now select this new column and choose copy click on the column header of the original column and choose edit / paste special - values you can now delete the helper column. hope this helps Cheers JulieD "Harvey" wrote in message ... In a spreadsheet that I made, there is a column with all types of text: all upper, all lower, proper. It could be a long task to re-type each cell. I'd like to convert this entire column to all proper. How can this be easily done? Thanks in advance for your help. |
#3
![]() |
|||
|
|||
![]()
Harvey
Assuming your column is A. In an adjacent column enter =PROPER(A1) in a cell and double-click on the fill handle of that cell to copy the formula down. Fill handle is the black lump at right bottom corner of the cell. When happy with results, copy and paste special(in place)valuesOKEsc You can now delete the original column. Gord Dibben Excel MVP On Thu, 16 Dec 2004 19:33:05 -0800, Harvey wrote: In a spreadsheet that I made, there is a column with all types of text: all upper, all lower, proper. It could be a long task to re-type each cell. I'd like to convert this entire column to all proper. How can this be easily done? Thanks in advance for your help. |
#4
![]() |
|||
|
|||
![]()
Create a helper column next to your column.
If your data is in column A starting in A1, put =Proper(A1) in B1 and copy it down. Then, copy the new cells and go to Edit | Paste Special | Values. Then, delete the original column. tj "Harvey" wrote: In a spreadsheet that I made, there is a column with all types of text: all upper, all lower, proper. It could be a long task to re-type each cell. I'd like to convert this entire column to all proper. How can this be easily done? Thanks in advance for your help. |
#5
![]() |
|||
|
|||
![]()
this may prove useful
Sub ChangeCase() Application.ScreenUpdating = False Dim r As Range nCase = UCase(InputBox("Enter U for UPPER" & Chr$(13) & " L for lower" & Chr$(13) & " Or " & Chr$(13) & " P for Proper", "Select Case Desired")) Select Case nCase Case "L" For Each r In Selection.Cells If r.HasFormula Then r.Formula = LCase(r.Formula) 'R.Formula = R.Value Else r.Value = LCase(r.Value) End If Next Case "U" For Each r In Selection.Cells If r.HasFormula Then r.Formula = UCase(r.Formula) 'R.Formula = R.Value Else r.Value = UCase(r.Value) End If Next -- Don Guillett SalesAid Software "Harvey" wrote in message ... In a spreadsheet that I made, there is a column with all types of text: all upper, all lower, proper. It could be a long task to re-type each cell. I'd like to convert this entire column to all proper. How can this be easily done? Thanks in advance for your help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert text to numbers | Excel Discussion (Misc queries) | |||
Convert data of cells to any type: Number, Date&Time, Text | Excel Discussion (Misc queries) | |||
Putting text in a column based on variable text from another colum | Excel Discussion (Misc queries) | |||
how do I easily convert a single column of text (multiple rows si. | Excel Discussion (Misc queries) | |||
Is there a way I can enter a letter to proceed text a column of ce | Excel Discussion (Misc queries) |