Apostrophes in formula bar

J

Joanne

I have been given a worksheet with hunderds of rows and a couple dozen
columns.
All the data entry has been preceeded by an apostrophe in the formula
input bar. I tried find/replace, but it does not see the apostrophes.
Could someone please tell me how to do a global erasure of these
apostrophes throughout the entire worksheet?
Thanks so much for you help
Joanne
 
B

Bernie Deitrick

Joanne,

Select all your cells, and run this macro

Sub PutValues()
Set myRange = Intersect(Selection, ActiveSheet.UsedRange)
myRange.Value = myRange.Value
End Sub

HTH,
Bernie
MS Excel MVP
 
J

Joanne

Thank you, Thank you for your very prompt and expert help
Much appreciated indeed
Joanne
 

Ask a Question

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.

Ask a Question

Top