New to Kendo UI for Angular? Start a free 30-day trial
Creating a hyperlink to switch between sheets in Kendo UI for Angular ExcelExport
Updated on Jan 20, 2026
Environment
| Product | Progress® Kendo UI® ExcelExport for Angular |
Description
How I can add a hyperlink in a cell that redirects to another Excel sheet using Kendo UI for Angular ExcelExport?
This KB article also answers the following questions:
- How can I create links between ExcelExport sheets in Angular?
- How to use formulas to create hyperlinks between different sheets in ExcelExport for Angular?
Solution
To create links between sheets in the ExcelExport component, utilize the formula property of the cell object. This allows for the incorporation of Excel formulas, including the HYPERLINK function, to create interactive links between sheets.
The HYPERLINK function syntax for linking to another sheet and cell is as follows:
typescript
cells: <WorkbookSheetRowCell[]>[
{ value: 'Around the Horn' },
{
formula: '=HYPERLINK("#Sheet2!A1", "Go to Sheet2")',
},
]
The following example demonstrates how to create a hyperlink in the first sheet that navigates to the second sheet when clicked.
Change Theme
Theme
Loading ...