How do I separate initials of up to six names into an abbreviation? For example, I want to breakdown Juan Pablo Ramon Gutierrez Jr into JPRGJ. There will always only be a space in the middle with no hyphens or other delimiters but I am struggling with how to get above 3. This formula has gotten me to three:
=IF(LEN([Product 2]3) - LEN(SUBSTITUTE([Product 2]3, " ", "")) = 1, LEFT([Product 2]3, 1) + "" + MID([Product 2]3, FIND(" ", [Product 2]3) + 1, 1), LEFT([Product 2]3, 1) + "" + MID([Product 2]3, FIND(" ", [Product 2]3) + 1, 1) + IFERROR("" + MID([Product 2]3, FIND(" ", [Product 2]3, FIND(" ", [Product 2]3) + 1) + 1, 1), ""))