Copy & Paste Issue

G

Guest

I want to copy and paste a row of numbers but want to cut off the last couple
of digits and then format a certain way. Is this possible?

example: 123456789 copy and paste to new row as 123-456
 
G

Guest

The easiest way is to create a formula like the one below. the copy the
formula down the entire row.

=LEFT(D13,3)&"-"&MID(D13,4,3)

You can convert the formula to text by copy the range of cells and using
paste special with values checked.
 
P

Peo Sjoblom

=TEXT(LEFT(A1,6),"000-000")

if you want these as real numbers use

=--LEFT(A1,6)


and use a custom format of 000-000
 

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

Similar Threads

Copy and paste to the last row 3
Alt codes 4
Copying SSNs to new format 6
splitting text in a cell.. 5
Macro questoins 2
Formula from consecutive rows to alternate rows? 2
Cut and Paste 2
Copy & Paste 2

Top