You might face the following reload error message with the Qlik Sense license monitoring app if users have reached the limit of the capacity license:
Error: Unexpected token: '&', expected one of: '(', ',', ')', 'Yellow', 'ZTestw_z', 'OPERATOR_PLUS', 'OPERATOR_MINUS', ...
Execution Failed
Execution finished.
Environment
- All Qlik Sense Enterprise on-premise versions
Resolution
The following workaround seems to solve the issue, just use the following code:
Let vs_analyzer_capacity_run_out_days = if(IsNull(vs_analyzer_capacity_per_day),0,If(vs_analyzer_capacity_per_day=0,99,Floor(vs_analyzer_capacity_Allocated/vs_analyzer_capacity_per_day)));
Instead of:
Let vs_analyzer_capacity_run_out_days = If(vs_analyzer_capacity_per_day=0,99,Floor(vs_analyzer_capacity_Allocated/vs_analyzer_capacity_per_day));