Problem With Concatenating Numbers

Dazzawm

Well-known Member
Joined
Jan 24, 2011
Messages
3,786
Office Version
  1. 365
Platform
  1. Windows
I have some numbers in a 3 digit format e,g 001 002, 014, 088 etc.. and I am trying to add them onto the end of some other text/numbers by concatenation but the problem is it knocks of the zeros.

For example I have in a cell AR3313 and I want to add 001 to the end (with a space) so it looks like AR3313 001, but when I do it the result is AR3313 1. How can I rectify this please? Thanks

(In the cell it says 001 etc but in the formula bar it just says 1)
 

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.
Cell A1 (Text format): 001
Cell B1: AR3313
Cell C1 formula: =B1 & " " & A1
 
Last edited:
Upvote 0
Or you could try this. Assuming your number is in A1 (in number format) and the text is in B1. In C1 enter:

=CONCATENATE(TEXT(A1,"000"),B1)

The TEXT function changes the number to text in the specific format you want.

Bill
 
Upvote 0
Sektor with yours I change the 001 to text and it goes to 1 rather than 001 and I am getting the same problem as before and with yours Bill there is no space and a 1 rather than a 001.
 
Upvote 0
1. Set Text format.
2. Press F2 and type in 001.
3. Press Enter.
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,299
Members
452,904
Latest member
CodeMasterX

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