Hello,
I have data that has some unreadable (comes up as a box) characters. The clean function within Excel gets rid of the characters perfectly. I would like to create a macro that will clean all of the data on the sheet. I currently have data in cells A1:JD5000.
I can use the following code to get rid of the bad characters in individual cells, but I cannot figure out how to modify it to clean the whole worksheet:
Any ideas? Thanks![]()
Range("A1").Value = Application.WorksheetFunction.Clean(Range("A1"))
Bookmarks