Note: In the generic form of the formula “domain” represents a domain or email address like “www.domain.com”. At the core, this formula uses the RIGHT function to extract characters starting from the right. The other functions in this formula just do one thing: they figure out how many characters need to be extracted, n: At a high level, the formula replaces the last dot “.” in the domain with an asterisk () and then uses the FIND function to locate the position of the asterisk. Once the position is known, the RIGHT function can extract the TLD. How does the formula know to replace only the last dot? This is the clever part. The key is here: This snippet does the actual replacement of the last dot with an asterisk (). The trick is that the SUBSTITUTE function has an optional fourth argument that specifies which “instance” of the find text should be replaced. If nothing is supplied, all instances are replaced. However, if, say the number 2 is supplied, only the second instance is replaced. To figure out which instance to replace, the LEN function is used: The length of the domain without any dots is subtracted from the full length of the domain. The result is the number of dots in the domain. In the example name in B5, there are two dots in the domain, so the number 2 is used as in the instance number: This replaces only second dot with “”. The name then looks like this: “www.domaincom” The FIND function then takes over to figure out exactly where the asterisk is in the text: The result is 11 (the * is in the 11th position) which is subtracted from the total length of the domain: Since the name is 15 characters, we have: Finally, the number 3 is used by RIGHT like so: Which results in “com”

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.