Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8243101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T21:23:54+00:00 2026-06-07T21:23:54+00:00

How do I split a single Excel column whose values are defined as such:

  • 0

How do I split a single Excel column whose values are defined as such:

=HYPERLINK(“http://whatever.com”,”Website Title”)

into two separate columns, one with the title (“Website Title”) and another with the URL (“http://whatever.com”)

anyone?

(this is for Excel 2010)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T21:23:55+00:00Added an answer on June 7, 2026 at 9:23 pm

    This would work if you’re willing to use VBA.

    Option Explicit
    
    Sub SplitHyperLinkFormula()
        Dim r As Range
        For Each r In Selection
            If InStr(1, r.Formula, "=hyperlink", vbTextCompare) = 1 Then
                r.Offset(0, 1).Value = GetHyperlink(r.Formula) 'Split URL
                r.Offset(0, 2).Value = r.Value                 'Split Title
            End If
        Next r
    End Sub
    
    Function GetHyperlink(s As String)
        'Requires =HYPERLINK formula, assumes hyperlink has no commas.
        s = Left(s, InStr(s, ",") - 2)
        GetHyperlink = Right(s, Len(s) - 12)
    End Function
    

    Just highlight whatever you need split and run SplitHyperLinkFormula. It will put the two values you wanted in the two cells to the right of your cell.

    Warning: If for some reason your hyperlink has a comma in it, this will only return the portion of the URL before the comma.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to split the single column result from a query into 4 columns:
I want to split a string into each single character. Eg: Splitting : Geeta
I would like to split a string according to the title in a single
I'm trying to split a string by single quotes, but taking into account that
I want a string split at every single character and put into an array.
Is it possible to split up a single big legend into multiple (usually 2)
Simply Asking, Is there any function available in mysql to split single row elements
I am trying to split the single string in to two lines using \n
I need split string by commas and spaces, but ignore the inside quotes, single
I'm attempting to split up my WCF web services into a few services instead

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.