Separate the first few characters out of the cell.

jamesw81

New Member
Joined
Jan 13, 2022
Messages
2
Platform
  1. Windows
Hi , I have a list in A column which starts...
'1. Testword I want that list repeated in B column but.without the first four characters. I just want the letters. How do I right a formula for this. Thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi & welcome to MrExcel.

How about
Excel Formula:
=replace(a2,1,find(" ",a2),"")
 
Upvote 0
Welcome to the Board!

If it always starts with the 4th space, you could use:
Excel Formula:
=MID(A1,4,LEN(A1))

If you want something a little more dynamic that takes everything after the first blank space, you can use:
Excel Formula:
=MID(A1,FIND(" ",A1)+1,LEN(A1))
 
Upvote 0

Forum statistics

Threads
1,214,619
Messages
6,120,550
Members
448,970
Latest member
kennimack

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