Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,490 members
  • 7,299 online
  • 1,995,239 posts
  • 149,525 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    Catalog and Lineage

    What are Thoma Bravo's plans for Qlik? Are they good owners?

    What are Thoma Bravo's plans for Qlik? Are they good owners? I think they bought Qlik in 2015 or something and I am wondering what their plans are.
  • forum

    Qlik Replicate

    Qlik Replicate | SAP Application | Cannot load <sapnwrfc.dll

    While creating an source end point of SAP Application in Qlik Replicate, I am getting the following error:     Note: I have added sapnwrfc.dll file i... Show More

    While creating an source end point of SAP Application in Qlik Replicate, I am getting the following error:

     

    Abhagtani_0-1687852632428.png

     

    Note: I have added sapnwrfc.dll file in environment variables also still I am facing the same issue. Also, same issue appeared for me in QCDI.

    Show Less
  • forum

    New to Qlik Analytics

    Creating a filter based on radius

    I have a field for postal code, latitude, longitude, state and city. The latitude and longitude is based on the center of the postal codes. I want to ... Show More

    I have a field for postal code, latitude, longitude, state and city. The latitude and longitude is based on the center of the postal codes. I want to be able to create a filter that pushes the data out to include other zip codes by their lat/lon coordinates based on whether the user selects 5, 10, 20, 25 or 50 mile radius. Is this possible in Qlik with the data I have available to me?

    Show Less
  • forum

    Qlik Replicate

    Facing anywhere existence error

    Source: On-Prem SQL server Target: Azure SQL server We are copying 196 tables from source to target. For whole night it was running fine. Full load an... Show More

    Source: On-Prem SQL server

    Target: Azure SQL server

    We are copying 196 tables from source to target. For whole night it was running fine. Full load and Change processing was perfect over a night.

    Suddenly we encountered this error.

    chandraprakash_j_volvo_0-1713849276045.png

     

    Show Less
  • forum

    New to Qlik Analytics

    Change mesures name in a pivot table

    Hello , I have a pivot table with: Dimension: Matricule , Nom Column: Type( Frais or Gain) Mesures : GH,GM,SIP i want to change  the name of the mesu... Show More

    Hello ,

    I have a pivot table with:

    Dimension: Matricule , Nom

    Column: Type( Frais or Gain)

    Mesures : GH,GM,SIP

    RanMH_0-1710771378490.png

    i want to change  the name of the mesures based on the value of the column "Type"

    Exemple If Type='Gain' and mesure = GH then the mesure name will be "Gain GH"

    RanMH_1-1710771462274.png

    I used this formula as a name of the mesure : if(wildmatch(Type,'Gain'),'Gain GH', 'Frais GH') but it's not working it gives the same value everywhere 

    Is there a way to do this ?

    Thank you in advance.

     

     

     

    Show Less
  • forum

    Connectivity & Data Prep

    Qlik Sense connectivity via Office 365 SharePoint

    Hi, I'm trying to connect Office 365 Sharepoint in Qlik Sense. Below are the steps performed.  1. Creating a new data connection.  2. Choosing the Off... Show More

    Hi, I'm trying to connect Office 365 Sharepoint in Qlik Sense. Below are the steps performed. 

    1. Creating a new data connection. 

    2. Choosing the Office 365 SharePoint connector, and mention the base URL and choose the "select Account" prompt. 

    3. Then its asked for authenticate, the code was generated. and copied that code. Pasted in the respective tab place. 

    After that I'm facing the below error. 

    " Error Verifying: A connection attempt failed because the connected party did not properly respond after a period of time or established connection failed because connected host failed to respond 40.126.53.18:443"

    Note: The IP getting changed whenever I tried. 

    Please suggest. 

     

    Show Less
  • Data and Metadata Governance

    Talend Open Studio MDM Installation

    How do we install Talend Open Studio for MDM on AWS? is it still Open source post Qlik aquisition
  • forum

    New to Qlik Analytics

    Sorting the selected dimension

    Hi , I have two dimesion  and we have used secondary dimensionality in measure to create a pivot table as shown now based on selecting any dimension ... Show More

    Hi ,

    I have two dimesion  and we have used secondary dimensionality in measure to create a pivot table as shown

    17138472987187297362229389160686.jpg

    now based on selecting any dimension user wants the measure to be sorted in descending order please se the measure below.

    17138473998988180801557420308903.jpg

     we have used dimensionality concept in our expression as shown below

    17138474809456778330984489917446.jpg

    Please let me know how to sort all measures if we select any one  dimension

     

    thanks,

    Suresh 

    Show Less
  • forum

    Qlik Enterprise Manager

    QEM: Audit changes to QR tasks

    Hi All, I want to be able to report by an automated method (eg. Splunk/QEM API) when a QR tasks is changed on our Prod environment as a part of a regu... Show More

    Hi All,

    I want to be able to report by an automated method (eg. Splunk/QEM API) when a QR tasks is changed on our Prod environment as a part of a regulatory requirement. 

    I tried looking in the QEM logs and it has something basic like: 

    76 2024-04-19 09:18:41 [Collector ] [INFO ] Executing ImportReplicateTask.

    But no other details of what tasks and by whom.

    Is there another method to audit changes to Qlik tasks?

    Show Less
  • forum

    New to Qlik Analytics

    Load files from variables defined

    Hello i am working on a task to improve the current load script for easy readability we are loading the last 3 financial year files the files are name... Show More

    Hello i am working on a task to improve the current load script for easy readability

    we are loading the last 3 financial year files the files are named as follows

    eg: Filename_year_2021

    Let vFinPayCurrent = $(vMfinyr)&$(vMfinyr)+1; //Current Finpay
    Let vFinPayLastYear = $(vMfinyr)-1&$(vMfinyr); //Last financial year
    Let vFinPay2YrsAgo = $(vMfinyr)-2&$(vMfinyr)-1; //2 Financial Years ago

    For loop to concat all these together,

    Set vfilelist ='vFinPayCurrent','vFinPayLastYear','vFinPay2YrsAgo';
    for each var in vfilelist
    MyTable:
    load *
    FROM [$(vG.QVDPath)/Filename_year_$(var).qvd]
    Next var

     

    CURRENT Approach:

    mytable:

    load * from 

    [$(vG.QVDPath)/Filename_year_$(vFinPayCurrent ).qvd]

    concatenate

    load * from 

    [$(vG.QVDPath)/Filename_year_$(vFinPayLastYear ).qvd]

    concatenate

    load * from 

    [$(vG.QVDPath)/Filename_year_$(vFinPay2YrsAgo ).qvd]

     

    Thanks in advance

     

     

     

    Show Less
Leaderboard

Customer Story

Qlik Data Integration & Qlik Replicate story

Qlik enables a frictionless migration to AWS cloud by Empresas SB, a group of Chilean health and beauty retail companies employing 10,000 people with 600 points of sale.

Customer Story

Building a Collaborative Analytics Space

Qlik Luminary Stephanie Robinson of JBS USA, the US arm of the global food company employing 70,000 in the US, and over 270,000 people worldwide.

Location and Language Groups

Choose a Group

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

Collaborate

Healthcare User Group

Healthcare User Group

A private group is for healthcare organizations, partners, and Qlik healthcare staff to collaborate and share insights..

All are welcome

Japan Group

Japan

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

Request to join

Brasil Group

Brazil

Welcome to the group for Brazil users. .All discussions will be in Portuguese.

open to all

Blogs

Community News

Hear from your Community team as they tell you about updates to the Qlik Community Platform and more!