Assuming Excel recognizes the data as numeric, just reformat it. Edit >
Cells, select the Number tab, choose 0 decimals and uncheck the separator box.
If there not recognized as numbers, you'd first want to convert them: type
a 0 in some random cell, copy it, select your data set and Edit > Paste
Special, select Values and Add, then click OK.
If all you really want is to remove the commas and periods (not convert a
string to a number), and the value is stored as text, you can use the
SUBSTITUTE function:
=SUBSTITUTE(SUBSTITUTE(A1, ",", ""), ".", "")
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.