Create actions that navigate to destinations
Workbooks support actions that navigate users to predefined URLs, other Sigma documents, or different locations within the current workbook.
This document explains how to create actions that navigate users to specific destinations. For more information about actions in Sigma, see Intro to actions.
User requirements
The following requirements apply to users who configure actions. Users who access and interact with a workbook can typically trigger all existing actions within it. Any restrictions are noted in this document.
The ability to configure actions requires the following:
-
You must be assigned an account type with the Full explore or Create, edit, and publish workbooks permission enabled.
-
You must be the workbook owner or be granted Can explore1 or Can edit access to the workbook.
1If you’re granted Can explore access to the workbook, you can configure actions in custom, saved, and shared views. Actions saved to views do not apply to the workbook’s published version.
Open a link
Create an action that navigates to an external link or destination within Sigma. Open a static link or generate a dynamic URL that adjusts to control or column values in the current workbook.
-
Open the draft, a custom view, or a saved view of a workbook. If you open a saved view, go to the workbook header and click
Customize this view to enable changes.
-
Select the trigger element (the element users must interact with to initiate the action).
If the trigger element is a plugin, select the name of the plugin configuration object under Custom plugin. In your code editor, refresh your plugin, then test the action in the workbook. For more information, see Configure plugins to use as trigger elements.
-
In the editor panel, open the Actions tab.
-
Create a new sequence, or locate an existing sequence that you want to modify.
-
Select the default action (if creating a new sequence), or click
Add action to add a new action to the sequence.
-
In the modal, configure the required fields to define the response:
Open a link with a dynamic URL
To generate a dynamic URL that adjusts to control or column values in the current workbook, utilize Sigma’s dynamic text functionality when configuring the Link URL field in step 4 of the previous section.
- In the Link URL field, enter the base URL (unless this must also be dynamically generated), then enter
=anywhere you want to add a dynamic value.
Pressing = opens the formula bar to add dynamic text. To enter a literal equals sign instead, press Ctrl + Option + =.
-
When you enter
=, Sigma displays an overlay containing a formula bar.- To add the value of a control, enter a control ID in square brackets:
[<control-ID>]. For example,[search-control]. - To add a selection made in a column, add a variable that references the selection:
[Selection/<Column Name>]. For example,[Selection/Name]. See Use variables in actions. - To add all values in a column, enter the column name of an element enclosed in square brackets:
[<Element name>/<Column name>]. For example:[Vendors/Portal].
You can also apply functions to generate dynamic values or to transform control and column values as needed. For example, when adding all values in a column, you can use the [Max](/docs/max) function to return the maximum value in the column, such as
Max([Vendors/Portal]). - To add the value of a control, enter a control ID in square brackets:
Open a workbook or template
Create an action that navigates to another Sigma workbook or template. Open the destination document in its published state, or pass specific values to existing control elements to instantly open a drilled-down view.
-
Open the draft, a custom view, or a saved view of a workbook. If you open a saved view, go to the workbook header and click
Customize this view to enable changes.
-
Select the trigger element (the element users must interact with to initiate the action).
If the trigger element is a plugin, select the name of the plugin configuration object under Custom plugin. In your code editor, refresh your plugin, then test the action in the workbook. For more information, see Configure plugins to use as trigger elements.
-
In the editor panel, open the Actions tab.
-
Create a new sequence, or locate an existing sequence that you want to modify.
-
Select the default action (if creating a new sequence), or click
Add action to add a new action to the sequence.
-
In the modal, configure the required fields to define the response:
Pass values to controls in the destination workbook
To open a drilled-down view of the destination workbook, add control targets and rules to the Pass control values field in step 4 of the previous section.
- In the Pass control values section, click
Add a control target.
- Configure the required fields to identify the control target and define the rule:
- [optional] Repeat steps 1 and 2 to configure additional control targets and rules.
Navigate the current workbook
Create an action that navigates to a specific location within the current workbook. Shift the focus to the top of a page or to an individual element.
-
Open the draft, a custom view, or a saved view of a workbook. If you open a saved view, go to the workbook header and click
Customize this view to enable changes.
-
Select the trigger element (the element users must interact with to initiate the action).
If the trigger element is a plugin, select the name of the plugin configuration object under Custom plugin. In your code editor, refresh your plugin, then test the action in the workbook. For more information, see Configure plugins to use as trigger elements.
-
In the editor panel, open the Actions tab.
-
Create a new sequence, or locate an existing sequence that you want to modify.
-
Select the default action (if creating a new sequence), or click
Add action to add a new action to the sequence.
-
In the modal, configure the required fields to define the response:

