This article will cover the syntax of the ‘binary’ regular script statement.
The binary statement is used to load data from another Qlik Sense app. Note that only a single binary statement is permitted within an app script and it must be located before any other statements.
Statement syntax
Binary [path] filename
Path | This is the path to the file. It must be a folder connection. |
Filename | The name of the file to be loaded including the file extension. |
Example
This example loads data from an app called ‘myApp’ stored in the folder location ‘DataFiles’.
Binary lib://DataFiles/myApp.qvf;
Result
Data is loaded from the specified qvf file.