Trim the last digit

B

Ber

I am using 12 digits upc codes in all the cells of one column but I nee
only 11 digits. How can I trim the last digit in all the cells for tha
column?

Thanks
 
I

immanuel

If your UPCs are stored as numbers, and your first datum is in A1, you could
create another column with the following formula:

=INT(A1/10)

If your data is textual, use:

=LEFT(A1,11)

And drag down to the end of the data range.

/i.
 

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