Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,590
- Office Version
- 365
- 2016
- Platform
- 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,
but of course it only provides me 231B.
I did guess with this ....
but it of course just provided an error.
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
I did guess with this ....
Code:
=RIGHT(A2,2) & format(A3,"000000") & A4