Theme editor

How to change text to url with python in excel?

Aior

Administrator
Staff member
Joined
Apr 2, 2023
Messages
83
Reaction score
2
Points
8
Age
39
Location
Turkey
Website
aior.com
Here you can find how to change a string (text) to url in python and save as a different file below:

For example we have a domain name list written as a text and we want to change all of text to https://text url. Lets see example as below:

Sample file is:

1686672694544.png

We can do it manually or we can use python for it:

Lets open Anaconda and navigate to Jupyter notebook:

1686672828427.png

Navigate to your desired folder same with your excel file location and create new python file as below:

1686672989379.png


Excel file name is domains.xlsx


Python:
!pip install pandas openpyxl

import pandas as pd

# Load your Excel file
df = pd.read_excel('domains.xlsx')

# Select the column that you want to convert to links
column = df['Domain']

# Iterate over the rows in the column
for i, row in column.iteritems():
    # Format the row as an Excel HYPERLINK function
    column.at[i] = f'=HYPERLINK("http://{row}", "{row}")'

# Replace the original column with the new column
df['Domain'] = column

# Save the DataFrame to a new Excel file
df.to_excel('linked_domains.xlsx', index=False, engine='openpyxl')


Here is the result of the new file with linked struckture:

1686674446069.png

Then you can can change output colour as you want.

Changed colour structure is below:

1686676378181.png

You can see output excel file as linked_domains.xlsx attached.
 

Attachments

  • 1686672694544.png
    1686672694544.png
    92.1 KB · Views: 20
  • 1686672828427.png
    1686672828427.png
    212.2 KB · Views: 17
  • 1686672989379.png
    1686672989379.png
    19.7 KB · Views: 17
  • 1686674446069.png
    1686674446069.png
    95.7 KB · Views: 12
  • 1686676378181.png
    1686676378181.png
    77.1 KB · Views: 11
  • domains.xlsx
    domains.xlsx
    9.8 KB · Views: 0
  • linked_domains.xlsx
    linked_domains.xlsx
    10.5 KB · Views: 2
Last edited:

Featured content

Back
Top