Can someone tell me or correct this - I want to execute this macro so that it will change all names in a column to Proper case - this formula gives me an error??
Sub ProperSelection()
For Each cell In Selection IF Not cell.HasFormula Then cell.Value=Application.WorksheetFunction.Proper(Cell.Value) End If Next cell
End Sub
Sub ProperSelection()
For Each cell In Selection IF Not cell.HasFormula Then cell.Value=Application.WorksheetFunction.Proper(Cell.Value) End If Next cell
End Sub