Qlik Sense provides the option to define variables in the script and in the user interface.
The variable editor interface enlists the existing variables created in the script, and provides the user with the option to create new variables as well.
Qlik Sense provides the option to define variables in the script and in the user interface.
The variable editor interface enlists the existing variables created in the script, and provides the user with the option to create new variables as well.
For the purpose of this recipe, we will make use of an inline data load that gives the sales information for four countries:
Sales: LOAD * INLINE [ Country, Sales,COS USA, 1000,500 UK, 2000,1000 France, 3000,2500 Germany, 4000,4700 ]; Let vTemporary = 'Sum(Sales)'; Let vRedColor=RGB (255, 0, 0...