Is there a way to use the "Proper" function to format an entire worksheet. I want to convert a mainframe download in all caps to the "Proper" method (i.e. JAMES BROWN -> James Brown). I assume I will need to write a macro using VBA. Does anyone have any thoughts on how this is done
Thanks!

Using Proper function to Format Worksheet
dr.acv
For Each cc In Sheet1.UsedRange.Cells
cc.Value = Application.WorksheetFunction.Proper(cc.Value)
Next cc
Sianspheric