remove space between text or no from left count

shrinivasmj

Board Regular
Joined
Aug 29, 2012
Messages
140
i have a data in cell a1 need to remove space by count lenth and remove the space

321321 23132 2 2 2 1 2 is the right time to talk

3213212313222212 is the right time to talk out put


latter 16 from left and remove space in between
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
i have a data in cell a1 need to remove space by count lenth and remove the space

321321 23132 2 2 2 1 2 is the right time to talk

3213212313222212 is the right time to talk out put

latter 16 from left and remove space in between
One example is not usually enough to base a pattern on, but this works for what you posted...

=LEFT(SUBSTITUTE(A1," ",""),16)&MID(A1,FIND(" "&MID(SUBSTITUTE(A1," ",""),17,1),A1),LEN(A1))
 
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,893
Members
449,194
Latest member
JayEggleton

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