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: 
  • 272,434 members
  • 7,822 online
  • 2,045,612 posts
  • 154,695 Solutions
Announcements
Join us at Qlik Connect 2026 in Orlando, April 13–15: Register Here!

Welcome to Qlik Community

Recent Discussions

  • forum

    Featured Members

    Numeric Dimension Values Rounding When Downloading Data from Straight Table in Q...

    Has anyone noticed that when downloading data from a straight table in Qlik Cloud, numeric values get rounded to integers? This only happens when the ... Show More

    Has anyone noticed that when downloading data from a straight table in Qlik Cloud, numeric values get rounded to integers? This only happens when the numeric field is used as a dimension. If I use the same field as a measure, the downloaded values remain accurate.

    Is this expected behavior for straight tables in Qlik Cloud, or is there a workaround to prevent the rounding when using numeric fields as dimensions?

    Qlik Cloud 

    Show Less
  • forum

    Women Who Qlik

    Exclusive Event: Leadership and Mentorship: Women Who Qlik Conversation with Sad...

    If you work in data, analytics or AI and have not heard of Sadie St Lawrence, now’s the time to meet one of the most influential voices in the field!... Show More

    Women Who Qlik_2026_March26-event-1200x200 (1).jpg

    If you work in data, analytics or AI and have not heard of Sadie St Lawrence, now’s the time to meet one of the most influential voices in the field!

    On March 26 get an exclusive behind‑the‑scenes look at this visionary innovator, founder of Women in Data and founder/CEO of the Human Machine Collaboration Institute. 

    We sat down with Sadie to explore her career path, what drives her, and her perspective on leadership and mentorship. 

    Check Out the Conversation Now! 

    After we premiere the full conversation with Sadiestay for an interactive discussion, on leadership and mentorship, taking place in the comments below. 

     

    Please share, your thoughts on leadership and mentorship!  

    I have a few thought provoking questions to get us started: 

    • Share a risk you’re glad you took in life or in your career? 
    • What skill made the biggest difference in helping you move up in your career? 

     

     

    Show Less
  • forum

    Move to Qlik Cloud Analytics

    Multifactor Authenticator in Qlik Cloud

    Hi All,My Customer AD is on Prem AD, and he doesn't want to integrate with Qlik cloud, but he wants Multifactor Authentication.So as per the documenta... Show More

    Hi All,

    My Customer AD is on Prem AD, and he doesn't want to integrate with Qlik cloud, but he wants Multifactor Authentication.

    So as per the documentation available on Qlik help we tried to implement, It is working fine for me but not working for other users. 

    For example, I am tenant admin, when I was implemented Multifactor authentication it is working fine for me but when other user from my organization tried to access Qlik cloud he can without multi factor authentication.

    Is this any method how we can implement multifactor authentication for other users also?

    Thanks in advance!!

    Show Less
  • forum

    App Development

    Issue with Area Map in Qlik Sense

    We are currently facing an issue with the Area Map in Qlik Sense. We have checked both the Area Map and Point Map functionalities:The Point Map is wor... Show More

    We are currently facing an issue with the Area Map in Qlik Sense. We have checked both the Area Map and Point Map functionalities:

    • The Point Map is working as expected.
    • The Area Map is not working.

    This issue is occurring both in Qlik Sense Desktop and Qlik Sense hub.

    Since the Area Map is required, could you please check and share the RCA from your side at your convenience?

    Please let us know if you need any additional information from our side.

     

    Screenshot.png

     

     

    Show Less
  • forum

    Qlik Replicate

    Pass thru filter

    Hi Team, We set the pass thru filter as  OBJTP='abc' repctl.cfg --> the setting is already enabled for pass thru filter. But its not working. the numb... Show More

    Hi Team,

    We set the pass thru filter as 

    OBJTP='abc'

    repctl.cfg --> the setting is already enabled for pass thru filter.

    But its not working. the number of records its extracting is wrong. How to resolve this.

    Does the task work for only full load task or will it work for full load + cdc task?

    Thanks.

     

     

    Show Less
  • forum

    App Development

    REST Connector - No Longer Accepting HTTPHEADER X-HTTP-Method-Override?

    Hi, Using Qlik Cloud i have an analysis app which was reconciling user selection to a correct allocation based on business rules. No issues here.I was... Show More

    Hi,

     

    Using Qlik Cloud i have an analysis app which was reconciling user selection to a correct allocation based on business rules. No issues here.

    I was the using the REST Connector (initially setup using the POST request) but utilizing WITH CONNECTION and HTTPHEADER "X-HTTP-Method-Override" "PATCH"  to update a field in our job management system with the correct entry.  This was live for over a year no issues, but just yesterday it has stopped working.

    Our job management system is giving a error response 405 (method not allowed).  No change to our job management software, a standard PATCH request using python and postman both work so it is working as intended.  This is leaning me towards the REST connector is no longer accepting the override?

     

    Has any one else came up against this issue?

    Has anything changed with the REST Connector?

     

    Thanks in advance for anyones input.

    John

    Show Less
  • forum

    QlikView

    FirstSortedValue returns NULL despite unique maximum date - detailed example

    Hello Qlik Community,I'm encountering an unexpected behavior with FirstSortedValue and would appreciate your insights.Context:I have a table tracking ... Show More

    Hello Qlik Community,

    I'm encountering an unexpected behavior with FirstSortedValue and would appreciate your insights.

    Context:
    I have a table tracking employee appointments with fields:

    • EmployeeID (id_dim_salarie)

    • VisitID (id_visite_unique)

    • DateTime (date_consultation) - numeric Excel datetime

    • Teleconsult (teleconsultation) - text field ("Oui"/"Non")

    Goal:
    For each employee, retrieve the Teleconsult value from their latest appointment (maximum DateTime).

    Expression used:

     
    text
    FirstSortedValue(teleconsultation, -Num(date_consultation))

    Sample data (attached: Data_exploration.xlsx):

     
    EmployeeID VisitID DateTime Status Reason Teleconsult 1000011682 10000116822025-07-15 09:00 2025-07-15 09:00:00.000 Annulée Erreur de saisie Oui 1000011682 10000116822025-07-22 10:15 2025-07-22 10:15:00.000 Annulée Absence excusée Oui

    Expected result for EmployeeID 1000011682:

    • Latest date: 2025-07-22 10:15:00.000 (Excel numeric: 45860.4270833333)

    • Teleconsult value at that date: "Oui"

    • Should return: "Oui"

    Actual result: NULL

    Debug information I've verified:

    1. Max(date_consultation) = 45860.4270833333 ✓ (correct latest date)

    2. Count(DISTINCT date_consultation) = 2 ✓ (two distinct dates)

    3. Count(teleconsultation) = 2 ✓ (both lines have valid "Oui" values)

    4. No NULL values in teleconsultation for this employee ✓

    5. Dates are properly loaded as numeric datetime values 

    According to the documentation, FirstSortedValue should return NULL only when "more than one resulting value shares the same sort_weight for the specified rank". Here I have a unique maximum date with a valid teleconsultation value.

    Why does this expression return NULL? Is there something about the numeric datetime format or the specific context that's causing this behavior?

     

    Show Less
  • forum

    Administering and Monitoring

    Migrar VM Qlik sem Suporte

    Bom dia Temos um Qlik sem suporte, um sistema legado. Precisamos migrar a VM (VMware) para outro servidor fisico, mas ao migramos o PostgreSQL não sob... Show More

    Bom dia

    Temos um Qlik sem suporte, um sistema legado.

    Precisamos migrar a VM (VMware) para outro servidor fisico, mas ao migramos o PostgreSQL não sobe.

    Existe alguma limitação ou configuração?

    Show Less
  • forum

    Qlik Answers

    Qlik Answer - QVF file logic

    If I upload a qvf file will Qlik answer be able to share all the logics, source system and details from the script.
  • forum

    App Development

    Dynamic Variable - Text Issues

    Hello all,I'm fairly sure this is possible I just can't quite get the syntax right. I have a variable input box and the values are dynamic...I need th... Show More

    Hello all,

    I'm fairly sure this is possible I just can't quite get the syntax right. I have a variable input box and the values are dynamic...I need the them to return the following but can't get the syntax right:

    'Web', 'App'~Total|Web~Web|App~App

    It's the first part that's causing me the issue. I'm essentially trying to replace value in set analysis with what this variable returns but the extra single quotes are causing me no end of problems. The ideal outcome would look like this:

    vResultsChannel = 'Web', 'App' or Web or App 

    Does that make sense?

     

    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

Did you know...

Qlik Connect 2026: Be Bold. Be Different. Be Here.

Join us April 13–15, 2026 in Kissimmee, Florida for 2+ immersive days of innovation, hands-on learning, and powerful connections shaping the future of data and AI.

Did you know...

Qlik Free Trials

You can test-drive Qlik for free? Try Qlik Talend Cloud to integrate and clean data without code, or explore Qlik Cloud Analytics to create AI-powered visualizations and uncover insights hands-on.

Did you know...

Mastering Change Data Capture

You can move beyond batch processing and harness real-time data to power AI and faster decisions? Discover how in our new eBook, Mastering Change Data Capture.