Is Full page URL being used correctly in HYPERLINK(Full page UR, Page title)?
It outputs a Redirect Notice with an ‘http://’ prefix instead of ‘https://www.’ prefix
This is the report instance:
Is Full page URL being used correctly in HYPERLINK(Full page UR, Page title)?
It outputs a Redirect Notice with an ‘http://’ prefix instead of ‘https://www.’ prefix
This is the report instance:
Hey,
Hope you’re keeping well.
In Looker Studio, the HYPERLINK() function will render exactly the URL string you pass it. If the source field contains http:// instead of https://, that’s what will appear and may trigger a redirect notice. Make sure the underlying data field has the correct protocol by either updating it in your source (e.g., BigQuery, Sheets) or wrapping it in a calculated field that replaces http:// with https://, such as HYPERLINK(REGEXP_REPLACE(URL_Field, “^http://”, “https://”), Page_Title). This ensures the link opens directly with the secure https:// prefix.
Thanks and regards,
Taz