Eb0la11

Board Regular
Joined
Apr 2, 2007
Messages
55
Office Version
  1. 365
I have 3 columns of data, A, B, C.

A has - 00061
B has 003290
C has 9610

I was trying to use concatenate with periods between each reference to the cells noted above to get 00061.003290.9610 as the result in column D. It results in 61.3290.9610 even when I assign custom formatting as 00000.000000.0000 or #####.######.####.

Anyway I can get it to display as desired with quick resolve?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Use the TEXT function to keep the leading zeroes.
Code:
=TEXT(A1,"00000") & "." & TEXT(B1,"000000") & "." & TEXT(C1,"0000")
 
Upvote 0

Forum statistics

Threads
1,215,603
Messages
6,125,784
Members
449,259
Latest member
rehanahmadawan

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