🔗 Link Functions
Build and read clickable buttons and hyperlinks.
| Function | Description | Syntax | Parameters | Example |
|---|---|---|---|---|
LINK |
Creates a hyperlink to the given URL. | LINK(URL) |
URL — the web address the link points to. | LINK('``[https://your-text-here.com](https://your-text-here.com)``') |
BUTTON |
Creates a clickable button with a label, linking to the given URL. | BUTTON(URL, Label) |
URL — the web address the button points to.Label — the text shown on the button. | BUTTON('``[https://your-text-here.com](https://your-text-here.com)``', 'Open') |
GET_LINK_URL |
Returns the URL from a field created with LINK or BUTTON. |
GET_LINK_URL(Link or Button Field) |
Link or Button Field — the field to read the URL from. | GET_LINK_URL(FIELD('Website')) = '``[https://your-text-here.com](https://your-text-here.com)``' |
GET_LINK_LABEL |
Returns the label text from a field created with BUTTON (or LINK, if it has one). |
GET_LINK_LABEL(Link or Button Field) |
Link or Button Field — the field to read the label from. | GET_LINK_LABEL(FIELD('Website')) = 'Open' |