A Google Sheets Addon to convert Periscope-formatted hyperlinks to Google Sheets format.
- Visit the G Suite Marketplace listing.
- Click "Install".
- Click "Continue", choose your account, and grant permission to the app to access and modify your spreadsheets.
Ready to use! ✅
After installing:
-
Click Addons > Periscope Link Converter > Convert links in ...
-
See confirmation.
-
Voilà! Links you can click.
https://doc.periscopedata.com/article/tables#Hyperlinks
Tables will automatically convert a valid URL string starting with https:// or https:// into a clickable link. A URL can also be labeled to display a clickable name by utilizing the following syntax:
select '[Hyperlink Name](https://www.google.com)'
This query will result in the table shown below:
This syntax can also utilize data from individual columns to make the hyperlinked name dynamic. The following query uses "First_Name", "Last_Name", and "Twitter_Account_URL" columns to build out the link:
Redshift/Postgres:
select '[' || First_Name || ' ' || Last_Name || '](' || Twitter_Account_URL || ')' as Customer
MySQL/SQLServer/BigQuery/Oracle:
select CONCAT('[', First_Name, ' ', Last_Name , '](', Twitter_Account_URL, ')') as Customer
The result is shown below, and clicking each link will open up that user's twitter page: