- Joined
- Jun 14, 2004
- Posts
- 11,075
- Reaction score
- 959
Scenario:
You have a text file list of domains, all types of TLDs but you want to sort them to find just the .co.uk ones
Open / import the list in Excel
I'll assume the domain list is in column A
In column B, add the following formula:
Copy it down all the rows...
If the domain name is a .co.uk, column B will state "UK" else nothing
Change the "co.uk" part of the formula if you want to identify another extension
Sort both columns by column B then you have a list of just the UK domains!
Enjoy
Admin
You have a text file list of domains, all types of TLDs but you want to sort them to find just the .co.uk ones
Open / import the list in Excel
I'll assume the domain list is in column A
In column B, add the following formula:
Code:
=IF(ISNUMBER(FIND(".co.uk",A1)),"UK", "")
Code:
=IF(ISNUMBER(FIND(".co.uk",A2)),"UK", "")
=IF(ISNUMBER(FIND(".co.uk",A3)),"UK", "")
If the domain name is a .co.uk, column B will state "UK" else nothing
Change the "co.uk" part of the formula if you want to identify another extension
Sort both columns by column B then you have a list of just the UK domains!
Enjoy
Admin