Questions tagged [qliksense]

Qlik Sense is a data analytics and visualization platform created and distributed by Qlik Corporation. The main aim of the platform is to allow users to self-discover the data that they require using fast in-memory analysis via a web portal.

Qlik Sense is a data analytics and visualization platform created and distributed by Qlik Corporation. The main aim of the platform is to allow users to self-discover the data that they require using fast in-memory analysis via a web portal.

Qlik Sense is QlikView's data visualization tool used to inspire self service BI by its end users through a user friendly interface sitting on top of an already defined data structure.

747 questions
2
votes
1 answer

Tie R script and QlikSense software together

I require qliksense to create an Excel file when the user selects a set of tuples and R to automatically pick up this file, perform my script on the file. My script then creates another CSV file which I then want qliksense to automatically pick up…
jon doe
  • 87
  • 1
  • 6
2
votes
0 answers

Dygraph Variable in Data Array

I am a beginner in javascript and just have two questions regarding the Dygraph javascript library. I am making a Qlik Sense extension and I am having problems giving data to Dygraph. for (var r = 0; r < hc.qDataPages[0].qMatrix.length; r++) { …
shobokshy
  • 35
  • 5
2
votes
1 answer

Qliksense Extension - Select Values

I need to pass the value 'A' to be selected into a Qliksense extension. This extension contains 1 dimension and 1 measure. I would like 'A' to be selected in the 1 dimension. It seems that self.selectValues(0, 'A', false); is the call for this. I…
SwolleyBible
  • 243
  • 7
  • 20
2
votes
1 answer

Choosing one measurement in a chart in QlikSense

I have created a chart where the x-axis (dimensions) is months, and for the y-axis (expressions) I have a few different data bars, which are compared to the first bar (which is the total). It is possible to add a slicer or something like that so…
orangutangas
  • 391
  • 2
  • 7
  • 20
2
votes
2 answers

How to select a particular number in a list box and make the other list box to only display the numbers greater than the selected number in QlikView?

I have two list boxes: Box1 and Box2. Box1 has values 10,20,30,40 etc and Box2 has the same 10,20,30 etc. After creating two separate list boxes for Box1 and Box2 respectively in the dashboard, how do I get to show only the values in Box2 which are…
2
votes
1 answer

How to embed QlikSense app in web?

Our web app is on Linux cloud and we use Qlik Sense as our visualization platform. Can we embed Qlik Sense within a web page? Thanks.
Dima Ha
  • 156
  • 1
  • 4
  • 20
2
votes
2 answers

Qlikview macro to automatically Fit zoom to window

How can i create a macro to automatically Fit zoom to window. I cant see an options to do this via a trigger. Preferably i would like this macro to be triggered when the screen resolution changes, if not possible i would like it to be set when you…
Matt
  • 14,906
  • 27
  • 99
  • 149
2
votes
1 answer

Set a default sheet (tab) when opening a qlikview file

How to set a default sheet (tab) when opening a qlikview file? I have multiple tabs and would like the document to always open on a specific tab
Matt
  • 14,906
  • 27
  • 99
  • 149
1
vote
2 answers

Qlik Sense: Sum by Distinct id

Generate sample data: SELECT 1 ID1, 1 ID2, 100 Amount FROM dual UNION ALL SELECT 1 ID1, 2 ID2, 100 Amount FROM dual UNION ALL SELECT 1 ID1, 3 ID2, 100 Amount FROM dual UNION ALL SELECT 2 ID1, 1 ID2, 500 Amount FROM dual UNION ALL SELECT 2 ID1, 2…
rhemmuuu
  • 1,147
  • 2
  • 5
  • 19
1
vote
1 answer

How to perform Partial Reload with Left Join on Qlik?

I have a Qlik script where I load two tables, Product and Customer. I join these two tables on a common field called Purchase_ID using a left join. I want to do a partial reload on the Customer table using the Partial Reload button to see the…
user42
  • 871
  • 1
  • 10
  • 28
1
vote
2 answers

Qlik Sense: Understanding what this summation expression does

I'm very new to qlik sense - I have some database experience. A team mate of mine recently quit who was the main owner of this piece of code. num(sum({1<[report_date] = {"=$(=(date((currDate))))"}> +1<[report_date]={"=$(date(currDate) - 7)"}> …
1
vote
1 answer

Problem with Data in Qlik Expression Editor - Want data after a specific date

I am trying to fetch Data i.e. Booking Data after a specific Booking Date and filtering with 3 order statuses by writing the below code in the Expression Editor Count({
RajatK350
  • 71
  • 8
1
vote
1 answer

Uploading/Publishing Qlik Objects to Hub through Enigma.JS

I am currently trying to figure out a way to publish objects (charts/tables/variables/dimensions/etc) to the Qlik Hub from an application. I've been using Javascript, Enigma.js, and have been hosting the application on the same machine as the Qlik…
Matt K
  • 11
  • 2
1
vote
1 answer

What does "+1" mean in the following Qlik expression

I am assuming the following expression means sum of sales for year 2009 and country Sweden, but I am not sure why +1 is being used, is it used as separator or it has any special meaning? Sum({$+1} Sales)
1
vote
2 answers

How can I make a script in python to reload an app in qlik cloud

At this moment I'm trying to reload a Qlik app through a python script, but I had a few problems, I'm gonna explain the things I already tested, but if someone knows how can I solve that, I will appreciate it a lot The first thing I tried, was the…