How to find the position of second space character in a name?

Gautham A

Board Regular
Joined
May 25, 2020
Messages
107
Office Version
  1. 2016
Platform
  1. Windows
Hello,
Let's say we have the below in cell A1 and A2
In cell A1-> "Alba and Nikita"
In cell A2-> "James and Benjamin"

I want to find the position of second space, from cell A1 I want the output to be 9 and cell B1 the output should be 10. Is there any formula for this? Thanks in advance
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi, this should do:
Book1
AB
1Alba and Nikita9
2James and Benjamin10
Sheet1
Cell Formulas
RangeFormula
B1:B2B1=FIND(" ",A1,FIND(" ",A1)+1)
 
Upvote 0
Here's another approach, the only benefit of which is SUBSTITUTE lets you specify which instance to replace, hence find.

GauthamA.xlsx
ABC
1NameHabtestToadstool
2Alba and Nikita99
3James and Benjamin1010
4Jim Jones#VALUE!#VALUE!
5His Lordship Reginald Andrew Fortescue Hythe III Esq1313
6John Jones IV1111
7Frank Harry Arnold Smith1212
Sheet1
Cell Formulas
RangeFormula
B2:B7B2=FIND(" ",A2,FIND(" ",A2)+1)
C2:C7C2=FIND("{{{}}}",SUBSTITUTE(A2," ","{{{}}}",2))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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