Jump to content

Hello! I am making a contacts list for my Discord contacts because Discord itself doesn't have a contacts list feature.

 

One of the details I am saving is the person's Twitter username. I am making each name a clickable link but the link would actually be the same for every entry except the last bit would be their username, since that's how Twitter works, so is there some formula I can enter to this column so when I enter the username it automatically makes that text a link to twitter.com/ whatever I typed in?

 

Here is how it looks, I've blurred sensitive info.

 

unknown-75.thumb.png.591a16cfc1f4ada6ba8f30c163608055.png

 

I am also making the Discord username a link but no formula would work with that since the link is a random hash Discord generates for each person. Twitter uses the same predicable url for every user so I can at least automate that much if someone here knows how the formula would work.

 

Thanks!

Link to comment
https://linustechtips.com/topic/1444348-google-sheets-auto-link-formula/
Share on other sites

Link to post
Share on other sites

@Invincible Sugar it's not a formula you're looking for its a function, since I am not a google sheets user, I can tell you exactly how to accomplish this but in Excel or Access it's going to be a validation or relationship you're trying to create. I am sure there is a google variation of this.

 

I am sorry I'm not helping much.

COMMUNITY STANDARDS   |   TECH NEWS POSTING GUIDELINES   |   FORUM STAFF

LTT Folding Users Tips, Tricks and FAQ   |   F@H & BOINC Badge Request   |   F@H Contribution    My Rig   |   Project Steamroller

I am a Moderator, but I am fallible. Discuss or debate with me as you will but please do not argue with me as that will get us nowhere.

 

Spoiler

Character is like a Tree and Reputation like its Shadow. The Shadow is what we think of it; The Tree is the Real thing.  ~ Abraham Lincoln

You have enemies? Good. That means you've stood up for something, sometime in your life.  ~ Winston Churchill

Reputation is a Lifetime to create but takes only seconds to destroy.

Docendo discimus - "to teach is to learn"

 

  

 CHRISTIAN MEMBER 

 
 
 
 
 
 

 

Link to post
Share on other sites

36 minutes ago, SansVarnic said:

@Invincible Sugar it's not a formula you're looking for its a function, since I am not a google sheets user, I can tell you exactly how to accomplish this but in Excel or Access it's going to be a validation or relationship you're trying to create. I am sure there is a google variation of this.

 

I am sorry I'm not helping much.

Hmm, actually that might be all I need. Now that I know more specifically what it's called I can research it more on my own. Thanks for the info!

Link to post
Share on other sites

10 minutes ago, Invincible Sugar said:

Hmm, actually that might be all I need. Now that I know more specifically what it's called I can research it more on my own. Thanks for the info!

If you want it all in one column AFAIK you would need to use Google Apps Script

 

If you are happy to have two columns, you can use concatenate()

 

Twitter Handle | Twitter Link

JoeBlog | concatenate("twitter.com/", A1)

 

Something like that

 

Edit: this may not be a clickable solution like you wanted sorry

 

Edit 2: Should be clickable now;
 =HYPERLINK(CONCATENATE("http://www.twitter.com/", A3), CONCATENATE("@", A3))

Where A3 is a reference to your previous column

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×