Problems when splitting strings of text with compound names.

RonOliver

Board Regular
Joined
Aug 30, 2022
Messages
80
Office Version
  1. 365
Platform
  1. Windows
Hi, everyone. I need a helping hand.

I'm trying to create a tool that splits the name and last name in a cell into three cells (one cell for the first name and the other two for both last names, as we have two last names in Spanish). I got the last names thing, but I'm still struggling with the first name because of the following:

We can add prepositions and articles to both first and last names in Spanish (for example, "de la Rosa" would be just one last name). In Spanish, you can only have two last names (apart from prepositions and articles preceding them), but you can have as many first names as you want (typically two or, very rarely, three), and they may also include prepositions (for example, María de los Ángeles is somebody's first name). My tool is able to split "Javier" / "del Pino" / "Fernández" with no problems, but it is struggling to split first names with prepositions (such as "María de los Desamparados Medina de la Rosa" or "Juan de Dios de Alcántara Bayarri"). That's why I feel my formula is useless and I need to create it from scratch, but I don't even know where to begin at this point.

I need a formula that will extract the first name, which is always going to be the full name minus the two last names and their respective prepositions. I feel like this is probably very easy, and I feel just very dumb for not getting this to work. A complete list of articles and prepositions would be: "de", "del", "de la", "de los", "de las", "el", "la", "los", "las", in case it helps. All help is very much welcome.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
I feel just very dumb for not getting this to work.
Far from it, allowing for exceptions in formulas is often far from easy.

Have I got the examples that you provided correct? Some of the functions that I have used are quite new so you may not have them yet, if that is the case then I'm not sure that it will be possible with a formula but I will have a look and see if I can come up with anything. (The new functions used are TEXTSPLIT, TAKE, DROP, and HSTACK. If you have those then you're good to go).
Book1
ABCD
2María de los Desamparados Medina de la RosaMaría de los DesamparadosMedinade la Rosa
3Juan de Dios de Alcántara BayarriJuan de Diosde AlcántaraBayarri
Sheet3
Cell Formulas
RangeFormula
B2:D3B2=LET(arr,SUBSTITUTE(TEXTSPLIT(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A2," de la "," de-la-")," de las "," de-las-")," de los "," de-los-")," de "," de-")," del "," del-")," el "," el-")," la "," la-")," los "," los-")," las "," las-")," "),"-"," "),first,TEXTJOIN(" ",1,DROP(arr,,-2)),last,TAKE(arr,,-2),HSTACK(first,last))
Dynamic array formulas.
 
Upvote 0
Solution
This is actually pretty amazing, to be honest. I already have the other two formulas figured out, so I guess this would delete them (or make me delete them manually). However, this works so well, apparently, that I don't even feel bad for wasting time and effort on less efficient formulas.

I'll check that thoroughly (I'm going to add an IF function at the beginning for foreign names that only have one last name, but that I can do myself, hopefully), but that's solved as far as I'm concerned. Thank you so very much! I'll try to familiarize myself with these new functions.
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,016
Members
448,936
Latest member
almerpogi

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