Skip to main content

Welcome to
Qlik Community!

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

Welcome to Qlik Community

Recent Discussions

  • forum

    New to Qlik Analytics

    Which chart to be used for 4 dimensions and 1 expression

    Hi, Could someone suggest me which chart to be used with 1 expression and 4 dimensions? I have already tried with Line and Bar chart, but could not ac... Show More

    Hi,

    Could someone suggest me which chart to be used with 1 expression and 4 dimensions? I have already tried with Line and Bar chart, but could not acheive desired result.

     

    Thanks in advance

    Show Less
  • forum

    Qlik Enterprise Manager

    Qlik sense logging services

    Dear All, I have recently installed Qliksense Feb 2024 version.  After installng I unable to start Qlik Logging servcies and getting below error.  I w... Show More

    Dear All,

    I have recently installed Qliksense Feb 2024 version. 

    After installng I unable to start Qlik Logging servcies and getting below error. 

    I would appreciate if you coud have any suggestion on this ?

     

    aruneshgupta_0-1713970280188.png

    Best Regards,

    Arunesh 

    Show Less
  • forum

    New to Qlik Analytics

    Generate code when joining two tables

    Hello communityHow can I generate a code when joining two tables? Example: Tabla 1 (Database) + 200 records Tabla 2(Database) + 200 records Table 3(... Show More

    Hello community
    How can I generate a code when joining two tables?

    Example:

    Tabla 1 (Database) + 200 records

    rmendoza_2-1713958093717.png

    Tabla 2(Database) + 200 records

    rmendoza_1-1713958007413.png

    Table 3(Excel) has the code... depending on the condition. (+ 200 records...many combinations)

    rmendoza_3-1713958176493.png

    thanks for your time.

    cheers

    Renzo

     

     

    Show Less
  • forum

    Integration, Extension & APIs

    Embedding Charts from Qlik app to a React Website using : Enigma JS & Nebula JS ...

    Hey everyone, I figured out how to display charts and insights from a Qlik app on my React website using Enigma JS & Nebula JS.  This will come in han... Show More

    Hey everyone, I figured out how to display charts and insights from a Qlik app on my React website using Enigma JS & Nebula JS. 

    This will come in handy, especially if you're working with a client-managed setup, as embedded links and the Capability API support might be a bit lacking.

    Now, here's the catch - this method works like a charm for Qlik's stack charts, but if you're jazzing up your charts with extensions like VizLib, you might hit a roadblock. Check out the supported chart types here.

    First up, let's connect to your app with Enigma JS

    1. Install Enigma JS:

      npm install enigma.js
      
    2. Bring it into your file:

      import enigma from "enigma.js";
      import schema from "enigma.js/schemas/12.612.0.json";
      
    3. Time to connect to your Qlik App:

      const session = enigma.create({
        schema,
        createSocket: (url) => {
          const socket = new WebSocket(url);
          socket.addEventListener("error", (event) => {
            setError(new Error("WebSocket error"));
            console.error("WebSocket error:", event);
          });
          return socket;
        },
        url: "<ADD THE APP URL HERE>",
      });
      
      const global = await session.open();
      const app = await global.openDoc("<ADD THE DOC ID HERE>");
      

    Moving on to Nebula JS for chart renderings:

    1. Install Nebula JS:

      npm install @nebula.js/stardust
      
    2. Bring in the "embed" function:

      import { embed } from "@nebula.js/stardust";
      
    3. Let's dive into a Pie Chart:

       

      a. Get the sn-pie-chart:

      npm i @nebula.js/sn-pie-chart
      

      b. Import it:

      import snPieChart from "@nebula.js/sn-pie-chart";
      

      c. Now, time to put that pie chart on display:

      const pieChartNebula = embed(app, {
        types: [
          {
            name: "piechart",
            load: () => Promise.resolve(snPieChart),
          },
        ],
      });
      
      pieChartNebula.render({
        element: document.getElementById("pie-chart"),
        id: "<ADD THE PIE CHART'S OBJECT ID>",
      });
      

    I wouldn't exactly call this the top-notch method. If you happen to have any other ideas that might work better, I'd be super grateful if you could share them with me!

    To know more about Nebula JS APIs - https://qlik.dev/apis/javascript/nebula-js/ 

    Connect with Me
    linkedin.png  twitter.png
    Show Less
  • forum

    App Development

    VBScript

    Hello,   I can create a Module with VB Script, whre can I find a descriptio: how to write a VB Script.   tanks in advance   Frédéric
  • forum

    GeoAnalytics

    Error: GeoAnalytics Invalid URL when importing GeoJSON with geoAnalytics+

    Dear all, i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within... Show More

    Dear all,

    i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within QlikView 12 Developer & ajax client.

    Now I would like to use a local file within GeoAnalytics.

    I tried to use the GeoAnalytics Connector with GeoAnalytics+ option and following settings:

    senior_v_0-1713967994990.png

    The error indicates, that the path is somehow wrong.

    file:///P:\Qlik\GeoAnalytics\CustomMaps\bezirke_999_geo.json

    Any idea what i'm doing wrong?

     

    Thanks in advance

    Show Less
  • forum

    Qlik Replicate

    Qlik Replicate - Using UPSERT mode when writing to Snowflake

    Hi Qlik Support, When using an UPSERT error handling policy (as a result of enabling the "Apply changes using SQL MERGE" option) in a Replicate task w... Show More

    Hi Qlik Support,


    When using an UPSERT error handling policy (as a result of enabling the "Apply changes using SQL MERGE" option) in a Replicate task which writes to Snowflake, is Replicate able to correctly prevent duplicate records from being written to the Snowflake target even though Snowflake is known to not enforce the uniqueness of primary keys.

     

    Apologies if this question has already been addressed in a different community post.

     

    Thanks,

    Nak

    Show Less
  • forum

    Qlik Replicate

    Is it possible to convert the values stored in the "Change_Mask" column into bit...

    I'm trying to convert the values stored in the "Change_Mask" column into bit format or Hex values for transformation into bit format, but I can't do i... Show More

    I'm trying to convert the values stored in the "Change_Mask" column into bit format or Hex values for transformation into bit format, but I can't do it because I don't know the format of the stored values. This is to distinguish between columns updated with 'Null' values and those not updated in the "Change table" used in store changes. While during "change apply," we can differentiate in the "attrep_changes_xxxxx" table, such as 'attu_Null', the "change table" doesn't allow distinguishing whether a column was updated with Null values or if no update occurred. Therefore, I request a method to change the values of "Change_Mask" into bit format (e.g., a value that allows checking the changed column positions like 1100111).

    Show Less
  • forum

    Design and Development

    Filter rows with a context value - value is an expression

    Goal: build a data filter in context, and use the context value in a talend componant. I use a context to create a filter expression. The value of con... Show More

    Goal: build a data filter in context, and use the context value in a talend componant.

    I use a context to create a filter expression. The value of context is correctly builded 

    When I show the value  

    System.out.println( " string : " + context.sSearchExpr ); 

    Result : 

    string : ( !( input_row.isIntern ) ) && ( !( input_row.isExternalEmail )

    Now, how do use my context value in any talend componant( tFilterRow or tJavaRow)

    Help me

    Thanks.

     

     

    Show Less
  • forum

    Connectivity & Data Prep

    QVD storing to Azure Storage

    I am able to read a QVD file just fine using the Azure Store Data Connections.  But when I try to write a QVD to the Azure Store location I am getting... Show More

    I am able to read a QVD file just fine using the Azure Store Data Connections.  But when I try to write a QVD to the Azure Store location I am getting the following error message.  The account does have RW access to the storage area.

    The following error occurred:
    Cannot open file:xxxxxxxxxxxxxxxxxxxx
    (Native path: ***
    System error: ***)

    The error occurred here:
    Store NewData into data connection

    Thanks in advance for your help

     

    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!