Split information then putting it back together

Vegas01

New Member
Joined
Jun 15, 2021
Messages
43
Office Version
  1. 2019
Platform
  1. Windows
Hi everyone

From the column "Creditor" I have been able to create the "Creditors No" column the issues is that there are some creditors who have the "L" as the first letter of there name.

So I was going down the road of getting rid of the names which is in column "Creditors No - Copy1" but now I am stuck.

How do I get the second line in "Creditors No - Copy1" from 403 back to L00403 taking into account that data further down creditors numbers down could need to go from 31512 to L31512.

Thanks in advance for your help.

1625539609814.png
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi Vegas
If you're wanting to get from something like 403 to 00403 one option is =right("0000"&<cell ref>,5) another is =text(<cellref>,"00000").
If you want to put the L back in front, ="L"&right("0000"&<cell ref>,5) another is ="L"&text(<cellref>,"00000").

Also if you're using text to columns to split out the number, make the new column be text format rather than general, then the leading zeros will be preserved.
if you have a column with L00403 and you want to split it into two columns with the L in the first and 00403 in the next use left and right:
letter col: =left(<cellref>,1)
number col:=right(<cellref>,5)
These will maintain any leading zeros as the output is treated as text rather than a number
 
Upvote 0

Forum statistics

Threads
1,225,601
Messages
6,185,924
Members
453,333
Latest member
BioCoder84

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