Tuesday, August 30, 2016
Monday, August 29, 2016
Create Qlikview Dashboard using Nprinting Log to monitor errors?
We can create dashboard using the Nprinting log as a data Source, which will give us the complete detail information about the which report distribution got failed with which error and more further information.
We can add further more detail information as per the need.
You can use below attached file in your qlikview model as well.
you just need to replace the nprinting log file source path, and it will work for you as well.
Friday, August 26, 2016
Thursday, August 25, 2016
Conditional Color change of bubble in Scatter Chart in Qlikview?
Please follow the below Steps.
We usually have 4 expression in Scatter chart.
We usually have 4 expression in Scatter chart.
- First expression: X coordinate for bubble position.
- Second Expression: Y Coordinate for bubble position.
- third expression: Size of your bubble based on expression result numbers.
- Fourth Expression: Popup text when you scroll your cursor on Bubble.
In order to change the color based on some calculation, please follow below.
- Goto to first expression lets say X.
- got to the backgroud color for first expression.
- write your formula here as per the need.
feel free to reach to me for any concern.
cheers
how to get .csv output file via nprinting in qlikview?
Please follow the below steps.
- Select the Reports icon in the lower left pane
- Select the QlikView Entity reports icon in the upper left pane
- Click on the QlikView Entity Report icon in the New group.
- Open the Object Selection window by clicking on the browse button at the extreme right end of the Object ID field
- Click on Save and Close.
- Now Add your report to the task.
- Open the Output Format drop-down menu by clicking on the cell containing Pdf
- Select Csv for the Output Format.
Now save your .nsq file and make a run.
Please make sure, in Task message attached option is enabled.
Wednesday, August 17, 2016
How to retrieve List of Variables along with their Definition in Qlikview?
Add below code in your script and run the script.
This will Add a table which will hold variable name and their definition. This value is from last reload(when the last time Dashboard was saved).
Let zFileName = DocumentPath();
Set ErrorMode = 0;
VariableDescription:
LOAD
Name As SOE.Name,
RawValue As SOE.Definition
FROM [$(zFileName)] (XmlSimple, Table is [DocumentSummary/VariableDescription])
Where Not(IsReserved = 'true' Or IsConfig = 'true');
Set zFileName = ;
Set ErrorMode = 1;
Subscribe to:
Posts (Atom)