Word to Digits in Separate Cells one after another

mba_110

Board Regular
Joined
Nov 28, 2012
Messages
72
Office Version
  1. 365
Platform
  1. Windows
I am trying for formula in excel to split the word in to digits on each separate cell in same row, as described below.

B10 = Mirza Bahadur Ali

Result Required: C10 = M, D10 = i, E10 = r, F10 =z, G10 = a, <No Space> H10 = B, I10 =a , J10 = h, K10 = a,L10 =d , M10 = u,N10 = r, <No Space> O10 = A, P10 = l, Q10 = i

Many thanks in advance for your kind help.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

If you have 2021 or 365 how about
Excel Formula:
=LET(d,SUBSTITUTE(A2," ",""),MID(d,SEQUENCE(,LEN(d)),1))
 
Upvote 0
New and old way to do it:
TEXTS.xlsm
ABCDEFGHIJKLMNOP
1Mirza Bahadur AliMirzaBahadurAli
2Mirza Bahadur AliMirzaBahadurAli
Sheet1
Cell Formulas
RangeFormula
B1:P1B1=LET(t,SUBSTITUTE(A1," ",""),MID(t,SEQUENCE(,LEN(t),1),1))
B2:P2B2=MID(SUBSTITUTE($A2," ",""),COLUMN()-1,1)
Dynamic array formulas.
 
Upvote 0
I am sorry that i have missed to mention the version its office 365, also i need to mention that i am using right to left alignment (Text direction) so the starting should be from right and not left.
 
Upvote 0
I have selected the office 365 check box for my excel usage.
But this message is pop up every time. " Due to the large number of posts being made using AI tools (e.g. chatGPT, BARD, GPT4) that do not work, it has been decided to ban the use of all AI sources for answering questions."

However, if its not saved please let me know i will do that again, secondly i need to change it slightly in above formula actually its different formula than above but we will use the same data to analyse it.

B10 = Mirza Bahadur Ali
Result Required: M i r z a B h d u l

That means I need once any word appear first time the formula has to take it in separate cell as above but when the same word appearing more than once then formula has to ignore it and move on to next word it doesn't matter how many times it appear (After First) it need to be eliminated in condition.
 
Upvote 0
Did the formula in post#6 do what you initially asked for?
 
Upvote 0
Yes it did serve the requirement and i upvoted your reply for excellent answer.

Post no #7 is the slightly different condition based on same data inputs.
 
Upvote 0
Yes it did serve the requirement and i upvoted your reply for excellent answer.
It would still help if you replied to the thread saying it worked.

How about
Excel Formula:
=LET(d,SUBSTITUTE(B10," ",""),UNIQUE(MID(d,SEQUENCE(,LEN(d),LEN(d),-1),1),1))
 
Upvote 0

Forum statistics

Threads
1,215,140
Messages
6,123,269
Members
449,093
Latest member
Vincent Khandagale

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