Formula With A Specific Formatted Concatenation

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,590
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I am looking for a formula for cell A1 that combines the value in A2 (the last two digits of the 4 digit number), the full six digit number in A3, and the text value in A4. For example:

A2 = 2023
A3 = 000013 a number custom formatted as 6 digits
A4 = "B"

The value I'm looking for for A1 would be = "23000013B"

I have this formula,
Code:
=RIGHT(A2,2) & A3 & A4
but of course it only provides me 231B.
I did guess with this ....
Code:
=RIGHT(A2,2) & format(A3,"000000") & A4
but it of course just provided an error.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
The function is actually TEXT, not FORMAT (it is FORMAT in VBA).
So just use:
Excel Formula:
=RIGHT(A2,2) & TEXT(A3,"000000") & A4
 
Upvote 1
Solution
Sorry for the late acknowledgement. This was very helpful, thank you!
 
Upvote 0
This would be another option
Excel Formula:
=MID(A2&A3&A4,3,99)
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,280
Members
452,902
Latest member
Knuddeluff

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