IT.COM

tips Excel Tips for Domainers

Spaceship Spaceship
Watch

cocaseco

Top Member
Impact
1,351
I've been wanting to start this thread for awhile, so here goes.

I know many of us use Excel to manage portfolios, big and small. Mine has developed over time as I learned new functions to implement. I thought it would be handy to have a central repository of those tips that anyone could use and not have to reinvent the wheel. Hopefully, there are some Excel masters that can share what they do. I do assume at least a basic level of Excel familiarity here.

I'll start with a way to automatically separate out the TLD into its own column.

So like probably everyone, my first column is the full name of my domain, including TLD. I realize I could do one column for name and another for TLD manually, but I like to have my spreadsheet do as much automatically as possible. The reason for having these two columns is that sometimes I want to look at full names, and sometimes I want to analyze my portfolio by TLD composition.

To do this I use the "Right" command written like this: =RIGHT(A19,LEN(A19)-FIND(".",A19)) This formula would be in cell B19 and the full name would be in A19.

The Excel RIGHT function extracts a substring from a string starting from the right-most character.
The Excel LEN function returns the length of the specified string. So I am using the DOT as the starting point
The Excel FIND function returns the location of a substring in a string. The search is case-sensitive.

In common language, this string starts on the right of the entry and moves inward until it finds a dot. Then it captures everything in between the end and the dot and uses that data to fill the cell.


So now, when I enter the full name in the first field, the second field is automatically populated with just the TLD.

That's my tip, hope it helps someone....I hope others have more to share.
 
25
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
Should I see I have a spreadsheet program for my avatar computer? I think I have a Word-like program. Not sure about spreadsheet, though.
 
1
•••
I know this is an older thread, but can I ask for a copy of your Excel template too please. I have sent you a PM. If that's possible, I would very much appreciate it.

Per this - previously in thread -

Wow. That's amazing one. Would it be possible for you to give out the excel sheet you've been using ( without your data ofcourse )

Sure, I think I could do that. Might take me a few days until I can trim it down. PM me.

Thank you very much, in advance
 
0
•••
If you want a quick WHOIS check without third party code you can use this:

Code:
=HYPERLINK("https://gwhois.org/"&A4&""&B4&"+dns", "WHOIS")

The name and extension are split into two cells, just remove "&B4&" if you have the full domain in one cell.
 
0
•••
...To do this I use the "Right" command written like this: =RIGHT(A19,LEN(A19)-FIND(".",A19)) This formula would be in cell B19 and the full name would be in A19...
Great thread (y)
Sadly, above seems incompatible with OpenOffice Calc, though (returns Err:508). Has anyone made this work in Calc?
 
Last edited:
0
•••
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back