Select B1 again and <copy> it, then Edit | Paste Special | Values
(check) | OK then <Enter>. Then just <copy> <paste it over the
original, and delete B1.
If you have a larger data set you might want to use a macro
Sub PropCase()
Application.DisplayAlerts = False
Dim R As Range
For Each R In Selection.Cells
If R.HasFormula Then
R.Formula = "=PROPER(" & Mid(R.Formula, 2) & ")"
Else
R.Value = Application.Proper(R.Value)
End If
Next
Application.DisplayAlerts = True
End Sub
Select B1 again and <copy> it, then Edit | Paste Special | Values
(check) | OK then <Enter>. Then just <copy> <paste it over the
original, and delete B1.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.