Question
MS Excel: Nesting SUBSTITUTE & CONCATENATE Formula
I'm struggling with the final part of this formula to create a username for employees based off their name, country code where they reside, and employee ID.
I need to do this ONLY for users who aren't marked as speaking English in the spreadsheet as well. The cell may contain their language as Dutch or Swedish for example.
The data format needs to be as follows:
- FIRSTNAME initial in Uppercase
- LASTNAME in lowercase
- COUNTRY ABBREVATION
- Employee ID number
(Ex would be JdoeUS.720)
So far I am able to compile their first initial and last name, but I'm not sure how to add on the country abbreviation followed by their employee ID in here. I was trying to use a concatenate formula as well but with no luck. This is all I have:
=IF(COUNTIF(V5,"*English*"),"",PROPER(LEFT(D5)&TRIM(RIGHT(SUBSTITUTE(F5," ",REPT(" ",99)),99))))
This is my first time posting, I'm already overwhelmed and not sure I read the guidelines properly. I can add data from cells easily but that's about as far as my skill level goes.