you didn't mention where the data was, but if you want to use vba to correct the
case, try this
Range("A1") = Application.Proper(Range("a1"))
--
Gary
"Jeff" <(E-Mail Removed)> wrote in message
news

54ECD69-3ACF-4F49-ABCB-(E-Mail Removed)...
>I have a data dump with names. Since the users inputs their name, the case
> of the name varies. I would like to clean the names up to make them look
> nice. For example, the names are typically one of these three:
>
> Jeff (this is good)
> jeff (not good)
> JEFF (not good)
>
> How can I clean them up so the first letter is always capital and the rest
> are lower case?
>
> I hope I can do this.. Thanks!
> --
> Jeff