copy first letter to another cell that contain words

syahputra

New Member
Joined
Jun 28, 2012
Messages
3
halo
i have table like this
A
B
BG003
Doku Street No.98
AC006
Peter St. No.8

<tbody>
</tbody>

i want to copy cell A to cell B to make it look like this
A
B
BG003
BG003 Doku Street No.98
AC006
AC006 Peter St. No.8

<tbody>
</tbody>

what is the formula i need to save time because it has like 100 rows.
any help would be appreciated
thank you
*sory my poor english
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
On Column C, enter this formula.

Code:
 =A1&" "&B1

Then drag down. :) Let us know if this helps.
 
Upvote 0
halo JMonty
thank you for the reply

it's not on the colomn C
the code in colomn A has to be copied to colomn B only, before the address
 
Last edited:
Upvote 0
Let's tag BG003 as cell A1 and Doku Street No. 98 as cell B1, to make this clear. In cell C1 type =CONCATENATE(A1,B1)

Hope that helps.
 
Upvote 0
Or simply insert a column before column "C", use the formula that JMonty provided.
Then when your satisifed that the data is correct, highlight column "C"
Select Copy, then Paste Special / VALUES ONLY.
Now delete column "B"
 
Last edited:
Upvote 0
Or simply insert a column before column "C", use the formula that JMonty provided.
Then when your satisifed that the data is correct, highlight column "C"
Select Copy, then Paste Special / VALUES ONLY.
Now delete column "B"

thank you very much Michael M
it works
 
Upvote 0
Pleasure, thanks for the feedback....(y)
 
Upvote 0

Forum statistics

Threads
1,202,908
Messages
6,052,488
Members
444,587
Latest member
ezza59

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top