Creates a link that opens an Anaplan XL Web report and optionally sets web parameters.

Use the Insert Formula > XL3WebReportLink menu or ribbon item to insert the formula using a wizard.

XL3WebReportLink( Report, [Link Text], [Link Type], [Param1], [Value1],…, [Param13], [Value13] )

You can have 30 name/value pairs.

ParameterDescription
ReportA piece of text, showing the relative path of the report.
Link TextThe jump text or numeric value that is displayed in the cell. If Link Text is omitted, the cell displays the full web address as the text.
Link Type

The type of link. Only used from the Anaplan XL Web Edition.

  • 0 - Existing window (default)
  • 1 - New Window
Param1,…, ParamNThe name of the web parameter where the following Value is placed when the link is followed.
Value,…, ValueNThe value that'll be passed to the corresponding web parameter.

Create an Anaplan XL workbook with three XL3WebReportLink statements as below:

Each link has a corresponding XL3WebReportLink:

Test111 =XL3WebReportLink("test111.xml", "test111", 1, "closecopies", "true")

Web1 =XL3WebReportLink("web1.xml", "Web1", 0, "text", $G$2, "closecopies", "true")

Test2 =XL3WebReportLink("test2.xml","test2",1)

Publish this workbook and open in Web Edition.

Select ‌a link and the report opens.

You can configure the workbook using parameters with reserved names. You don't add these using the Web parameters screen, you specify them in the formula.

XL3WebReportLink(…[Standard parameters]…, [SpecialParameterName], [Value] )

ParameterDescription
XL3SlicerPaneVisibleSet the workbook slicer pane visibility: true or false.
XL3ActiveWorksheetNameThe worksheet to display when the report link is opened.
XL3ActiveCellAddressThe cell to scroll to.
CloseCopiesIf set to true, then when you select on a link to run subsequent reports, you will find the previous report has been closed. This stops the user having many windows open that all require closing manually.
XL3ReportType

If specified, then the report will be downloaded instead of displayed in the browser.

  • ExcelFixed - A Excel file with active components converted to values.
  • ExcelLive - A live Excel file (requires Anaplan XL Excel Edition to use).
  • PDF - A PDF file.
  • PowerPoint - A PowerPoint file.
XL3TooltipThe associated value is used as the tooltip. 

A relative path can be used by using the syntax "./Book2.xml" - this loads the report Book2 from the same folder as the report containing the XL3WebReportLink.