Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 275,075 members
  • 17,337 online
  • 2,049,429 posts
  • 154,922 Solutions
Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!

Welcome to Qlik Community

Recent Discussions

  • forum

    Talend Studio

    Limiting output of taggregaterow (list)

    I'm trying to limit the output of a taggregate row to 5 values in a list function:The current output looks like:ModuleID | htmlRow1  |  value1 value2 ... Show More

    I'm trying to limit the output of a taggregate row to 5 values in a list function:

    mscarrick1_0-1780674414378.png

    The current output looks like:

    ModuleID | htmlRow

    1  |  value1 value2 value3 value4 value5 value6 value7 value8

     

    I want the output to only be 

    ModuleID | htmlRow

    1  |  value1 value2 value3 value4 value5

     

     Each ModuleID should have a maximum of 5 htmlRows in the list.

    I have a tried a tSamplerow but that limits the amount of ModuleID's.  I don't want to limit the rows going into the taggregaterow, only the rows coming out of the taggregaterow list.

    I'm not sure what a taggregatesortedrow does but it doesn't look suitable at first glance.

     

    Can anyone suggest anything I can try?

    Thank you.

    Show Less
  • forum

    App Development

    Changing Monetary Values to Numerical Abbreviations on X-Axis

    Hi,  I'm building a scatter plot and have large values of money on the X-axis. I want to change those values from being $20,000,000,000 to $20B but ca... Show More

    Hi, 

     

    I'm building a scatter plot and have large values of money on the X-axis. I want to change those values from being $20,000,000,000 to $20B but can't seem to get that to work.

     

    Measure:  Sum({<ModelDiscretionaryAcctFlag={'N'}>} AccountValue)

    Number formatting: Money, $#,##0;-$#,##0

    Tried using Number formatting: Custom Format: $#,##0.0a

    Neither seems to give me what I want. Any thoughts? 

     

    Show Less
  • forum

    Water Cooler

    Remove vulnerable components from package cache

    I am getting vulnerabilities on certain components in Package Cache eg libcurl.dll and node.jsI tried to remove them manually from the cache folders b... Show More

    I am getting vulnerabilities on certain components in Package Cache eg libcurl.dll and node.js

    I tried to remove them manually from the cache folders but this causes issues when I try to patch next time. While patching it gives error stating missing files, the only way to fix it I have to run repair.

    Please let me know what is the right way to get rid of the vulnerable components from the package cache folder.

    Show Less
  • forum

    Qlik Replicate

    Kafka endpoint Schema Registry curl failing to use NO_PROXY

    Hi, we've recently had to enable a HTTPS proxy on our qlik machine, done via the HTTPS_PROXY environmental proxy.To attempt to control which data does... Show More

    Hi, we've recently had to enable a HTTPS proxy on our qlik machine, done via the HTTPS_PROXY environmental proxy.

    To attempt to control which data doesn't go through the proxy we are utilising NO_PROXY.

    Our Kafka endpoint, with the schema registry end point as remained unchanged through out this.

    We have however added the schema registry hostname, as well as it's IP, to the NO_PROXY environmental variable.

    We have added the environmental variables to the site_arep_login.sh (we only run a single instance) as advised: 

    cho "export NO_PROXY=gds,.gds,amazonaws.com,gds-confluent-schema-registry.gds" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \
        && echo "export no_proxy=gds,.gds,amazonaws.com,gds-confluent-schema-registry.gds" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \
        && echo "export HTTP_PROXY=\$HTTP_PROXY" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \
        && echo "export http_proxy=\$HTTP_PROXY" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \
        && echo "export HTTPS_PROXY=\$HTTPS_PROXY" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \
        && echo "export https_proxy=\$HTTPS_PROXY" >>$QLIK_REPLICATE_BASE_DIR/bin/site_arep_login.sh \

     And I have confirmed that the pid Qlik is running under has the values.

    However, when we start the task it fails with a curl 56 / HTTP code 403, suggesting the data is still going through the proxy.

    The COMMUNICATION channel logs also appear to show that NO_PROXY is not picking up our environmental variable, and appears to be hard coded:

    00000617: 2026-06-05T11:57:16:761902 [COMMUNICATION   ]V:  CURL DEBUG (TEXT): Uses proxy env variable no_proxy == 'localhost,127.0.0.1'  (at_curl.c:775) 

    00000617: 2026-06-05T11:57:16:762203 [COMMUNICATION   ]V:  CURL DEBUG (TEXT): Uses proxy env variable https_proxy == 'http://gblprx.landg.com:80'  (at_curl.c:775)

    I've even entirely removed any proxy environmental variables, so no proxy is set anywhere and I still get the line about using proxy env no_proxy with the same values, even though it's not set on the system.

    Wondered if anyone else has experienced the same and has a solution? I've tried 2023.11, 2025.11, and 2026.5 - in all of these I've tried setting the proxy inside the qlik app at the server level instead, leaving the environmental variables empty, and then leaving 'use Proxy' unchecked for the Kafka schema registry - but it still ends up picking up the server settings and saying it's using no_proxy with localhost,127.0.0.1

    Show Less
  • forum

    App Development

    filter one sheet only

    I have two sheets. both use same data load editor query. I want a default filter on one sheet.  When I do actions filter selection, it applies to both... Show More

    I have two sheets. both use same data load editor query. I want a default filter on one sheet. 

    When I do actions filter selection, it applies to both sheets.

    how can I default filter one sheet only

     

     

    Show Less
  • forum

    Visualization and Usability

    Script Measur

    Hi @rubenmarin  i have measure calculated  in script  sum(cash)   as  cashnow i want to use direct cash field in pivot table  .  its giving me null va... Show More

    Hi @rubenmarin  i have measure calculated  in script 

     

    sum(cash)   as  cash

    now i want to use direct cash field in pivot table  .  its giving me null values.

    i tried using

    max(cash)

    first(Cash)

    sum(Cash)

    count(cash)

     

    nothing worked any other alternate for this? 

    Show Less
  • forum

    App Development

    Looping through a set of records by button press

    Hi EveryoneI would really love some help in something that I am trying to develop in my qliksense app.I have attached some sample data. There are 3 di... Show More

    Hi Everyone

    I would really love some help in something that I am trying to develop in my qliksense app.

    I have attached some sample data. There are 3 different person ID's and each person has filled in two surveys (1 and 2).  Each question 1-4 has a score.  Example person ID 1234646 has answered two surveys with a score of 4 for Q1 in survey 1 and then 3 for Q1 in survey 2.

    What I would like to do is take all the distinct PersonID's within my dataset and then when the app is loaded have it open on the first PersonID in the dataset.  I would like two buttons that will allow me when pressed to go to next PersonID in the list or back to the previous PersonID in the list.  I would like the next record button to be enabled until the last record in the list is reached.

    For each record that it displayed on the screen I want to be able to show the scores on charts.  This bit I have done by hard coding in an example PersonID so I am thinking that when the button is pressed the value of the PersonID will be passed to a variable which will then be read by the charts and will display accordingly.

    The area that I am struggling with is getting the unique PersonID and then looping through each record on a button press.   Any help greatly appreciated.

    Show Less
  • forum

    App Development

    Qlik Cloud - Call a reload task from button object

    Hey there everyone,I would like to know if there is a way to call a reload task from the button object, since I don't see any clear label about it fro... Show More

    Hey there everyone,
    I would like to know if there is a way to call a reload task from the button object, since I don't see any clear label about it from the object.
    In other developments we used the automations (which, at the time, were the only way to manage chaining of app reloads), but we would like to explore other ways to do so

    Riccardo

    Show Less
  • forum

    App Development

    Max Date Filter in Table

    Hi,I would like to store the MAX(POINT_IN_TIME) for use elsewhere in the app. I'm working with time series data and often use set analysis like the fo... Show More

    Hi,

    I would like to store the MAX(POINT_IN_TIME) for use elsewhere in the app. I'm working with time series data and often use set analysis like the following to aggregate data for the most recent date only: 

    {<POINT_IN_TIME={"$(=max(POINT_IN_TIME))"}>}[# of Members]

    I want to do something similar to store the date on its own to hopefully leverage a filter in a table. Right now, the table uses an indicator called EOPD_IND from the data model, which flags if the record is the most recent record in the database. However, I have users that want to filter back to a historical date, say 12/31/2024, and want the record for that data point to show in the table (not the EOPD record). 

    I can't simply remove the date filter from the table, either, because the table always needs to be limited to a single POINT_IN_TIME. Any ideas on the best way to achieve this?

    Thanks,

    Show Less
  • forum

    Visualization and Usability

    Straight Table column order resets after removing a field is this a known bug?

    Hi everyone,I'm experiencing an issue with the Straight Table in Qlik Cloud.I set up my columns in a specific order, but whenever I remove one field, ... Show More

    Hi everyone,

    I'm experiencing an issue with the Straight Table in Qlik Cloud.

    I set up my columns in a specific order, but whenever I remove one field, the remaining columns lose their custom order and go back to a different arrangement.

    Has anyone else experienced this? Is there a workaround to keep the column order intact after removing a field?

    Thanks! 🙂

    Show Less
Leaderboard

Qlik community MVPs

Qlik Community MVPs — trusted experts driving collaboration, learning, and innovation.

mvp-banner-side-image

Customer Story

Data Drives the Reconstruction of an Entire State

Data Restores Confidence: How SEFAZ-RS Used Qlik to Support the Rebuilding of a State.

Customer Story

Qlik platform helps structure an analytics ecosystem to support diagnostic medicine and healthcare.

AFIP revolutionizes management, optimizes resource allocation and strengthens data-driven culture

Customer Story

Hapag-Lloyd Enables Smart Decisions With Qlik

Global container shipping giant delivers data transparency to enable confident decision-making and operational efficiency.

Customer Story

Students See Data Come to Life With Qlik Academic Program

Qlik turns raw data into valuable learning experiences, empowering both students and faculty at TTUHSC.

Customer Story

MillerKnoll Unifies Data with Qlik Talend

MillerKnoll partnered with Qlik Talend® data solutions to unify data across its diverse systems, accelerating critical processes and nearly eliminating data integration issues organization-wide.

Customer Story

Radiall Embraces the Cloud and Improves Operational Efficiency

Migration to Qlik Cloud Analytics optimizes analytics applications within months.

Customer Story

French Ministry of Armed Forces Develops a Data-Centric Culture

With Qlik Cloud Analytics, Rexel boosts performance by enabling self-service analysis, reducing prep time, and giving 3,000 users access to trusted insights.

Your Place, Your People

Choose a Group

Join one of our Location and Language groups. Find one that suits you today!

Collaborate

Qlik en México

Qlik en México

Únete a la conversación con usuarios de Qlik en todo México: comparte ideas, haz preguntas y conéctate en español.

All are welcome

Hello from Japan

Japan

Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。

Request to join

Parlons Données

Parlons Données

Connectez-vous avec des utilisateurs francophones de Qlik pour collaborer, poser des questions et partager des idées.

open to all

AI Reality Tour

Zurich

Join data and AI leaders in Zurich on June 10, 2026 to learn how to scale AI and drive real enterprise impact.