Remove Apostrophe from end of number

  • Thread starter Thread starter octet
  • Start date Start date
O

octet

I have column with order 500 Records I need to remove the Apostrophe ‘ from
the end of each one can someone please tell me how.
0015762480000'

Thanks
 
With your data in column A, in B1 enter:

=LEFT(A1,LEN(A1)-1) and copy down
 
Edit, Replace, Find what = ', leave Replace with blank. WARNING: you
will lose the leading "Zeros" so you will need to have formatted the
cells as text first.
 
Hi,
You could use Replace from the Edit menu.
Select the first cell in your column.
Edit menu > Replace
You should see the 'Replace' dialog box.
In the 'Find What' enter ' (apostrophe)
Leave the 'Replace With' line blank.
From the 'Search' dropdown, choose Columns
Click 'Replace All'

Regards - Dave.
 
Thanks everyone

Dave said:
Hi,
You could use Replace from the Edit menu.
Select the first cell in your column.
Edit menu > Replace
You should see the 'Replace' dialog box.
In the 'Find What' enter ' (apostrophe)
Leave the 'Replace With' line blank.
From the 'Search' dropdown, choose Columns
Click 'Replace All'

Regards - Dave.
 

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

Back
Top