Is there a way to make a custom function return the same output like
=HYPERLINK(url, [link_label])
Basically, I am computing a URL inside the custom function and want to return a hyperlink with a specific link label. So far I can only return a link of the form.
function calLink() {
return 'https://www.google.com/calendar/event?action=TEMPLATE [...]'
}
This puts a valid link into the spreadsheet but does not allow me to specify a label for that link.