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: 
  • 253,270 members
  • 10,345 online
  • 2,035,226 posts
  • 153,260 Solutions
Announcements
WEBINAR June 25, 2025: Build on Apache Iceberg with Qlik Open Lakehouse - REGISTER TODAY

Welcome to Qlik Community

Recent Discussions

  • forum

    App Development

    I can´t copy-paste in Talend 8

    Hello, I used to be able to copy components from one job to another, but now I can't. Even within the job, I can't copy and paste. The paste option ap... Show More

    Hello, I used to be able to copy components from one job to another, but now I can't. Even within the job, I can't copy and paste. The paste option appears disabled. What should I do to fix this?

    Show Less
  • forum

    QlikView App Dev

    Binary-loaded analysis: expressions behave differently

    Hello,we are using a binary load for one of our QlikView analyses.The following expression works in the base analysis, but not in the binary-loaded an... Show More

    Hello,

    we are using a binary load for one of our QlikView analyses.
    The following expression works in the base analysis, but not in the binary-loaded analysis:

    =sum({<
    AuftragsMonatZahl -=,
    /*DispoLieferMonatZahl= {'>=1<$(=num(month(today())))'},*/
    AuftragsMonat -=,
    DispoLieferJahr = {'$(=year(today()))'},
    Auftragsart = {'Auftragsbestand'},
    AuftragsJahr -=,
    AuftragsJahrMonat -=,
    DispoLieferMonat -=,
    DispoLieferdatumJahrMonat -=
    >} AuftragWarenwertNettoOffen)


    I've identified that the main issue is related to the field 'DispoLieferMonatZahl'.
    As soon as I comment out this part of the formula — as shown above — the expression returns a value. Otherwise, the result is always 0.

    The values in DispoLieferMonatZahl appear as 1,2,3,4 etc., just like in the original analysis where the formula works correctly.
    So I believe the format is correct?

    Do you have any ideas or suggestions for resolving this?

    Thank you very much!

    Regina

    Show Less
  • forum

    Qlik Replicate

    Filter the task through Expression builder

    Hello team, We are trying to create a task in which one table is present and from that table we are trying to extract 1 result through expression buil... Show More

    Hello team,

    We are trying to create a task in which one table is present and from that table we are trying to extract 1 result through expression builder.

    We tested the SQL syntax as our source DB is Oracle and it's successfully passing the test expression but still instead of getting Transferred count as 1, it's giving the count as 31,362,906.

    Don't know whether we are using the correct syntax or not but not getting the desired result.

    We are feeding the syntax Table Settings>>Filter>>Expression Builder.

    Could you please assist on this ?

    Show Less
  • forum

    Connectivity & Data Prep

    Qliksense Api integration with Darwinbox HR tool

    Hello,I am trying to pull data from Darwinbox tool using Api integration,If anyone has accomplished this, could you please provide me the steps to int... Show More

    Hello,

    I am trying to pull data from Darwinbox tool using Api integration,

    If anyone has accomplished this, could you please provide me the steps to integrate this?

    thanks,

    Adithya

    Show Less
  • forum

    Data Movement & Streaming

    Connection issue with @qlik/embed-react while connecting with Qlik Enterprise ed...

    Hi,We are using the Qlik Enterprise Edition, May 2024 version, and currently employ Capability APIs to integrate visualizations into our React applica... Show More

    Hi,

    We are using the Qlik Enterprise Edition, May 2024 version, and currently employ Capability APIs to integrate visualizations into our React application. We are now transitioning to the @qlik/embed-react library.

    Our authentication model utilizes tickets, configured in the Qlik Management Console (QMC). However, when connecting with @qlik/embed-react, we encounter an "internal_window_authentication" issue, resulting in a 401 error. How can we resolve this issue?

    Below is the current code we are using:

    import React, { useEffect } from 'react';
    import { QlikEmbed, QlikEmbedConfig, type HostConfig } from '@qlik/embed-react';


    const QlikViz: React.FC = () => {

        const qlikConfig: HostConfig = {
            host:'https://<qlik host>/reactembed/',
            authType: 'interactive',
        };

        useEffect(() => {
            console.log('qlik config');
        }, []);
        return (
            <>
            <h1>Object</h1>
            <div style={{height: '100%', width: '100%'}}>
                <QlikEmbedConfig.Provider value={qlikConfig}>
                    <QlikEmbed
                        type="object"
                        appId="d29b816e-65a7-4819-97df-123456"
                        //@ts-ignore
                        objectId="ENwGbEr"
                        ui='classic/chart'
                    />
                </QlikEmbedConfig.Provider>
            </div>
            </>
        );
    };
    export default QlikViz;



    Show Less
  • forum

    App Development

    Exclusion of default state selection doesn't work in alternate state

    I'm using two alternate states (Left and Right) to compare two periods. In my expression I want to derive the number of new customers where the previo... Show More

    I'm using two alternate states (Left and Right) to compare two periods. In my expression I want to derive the number of new customers where the previous period is in alternate state Left. The latest period is in alternate state Right. I try to ignore a selection on [Department] in the deault state.

    However the outcome of the calculation differs when I make a selection on Department in the default state.

    What is wrong with my expression?

    Count({Right*$<
    %Relation_key = e({Left*$}%Relation_key),
    [Department]=
    >}
    DISTINCT %Polis_key)

    Qlik Sense Enterprise on Windows 

    Show Less
  • forum

    Integration, Extension & APIs

    @qlik/react-embed initial selection issues

    Hello i need some help integrating qlik into my react application.I am using @qlik/react-embeed and everything is working fine but i have issues figur... Show More

    Hello i need some help integrating qlik into my react application.

    I am using @qlik/react-embeed and everything is working fine but i have issues figuring out how to provide initialSelections in react-embeed.

    For example:
    I have a sheet with some chart and on my react-application when user clicks on a table row, i want to show him chart for that specific user, meaning i have to provide an initialSelection to my qlik sheet.

    Now in the documentation i see it exists, but the example is in web-components, not react-embeed and i dont know how to integrate it in react

    <qlik-initial-selections app-id="a51a902d-76a9-4c53-85d2-066b44240146">

    <field state="comparison" name="Product Sub Group Desc" values="Hot Dogs;Fresh Fruit"></field>

    <field state="comparison" name="AccountDesc" values="Sales;Cost of goods sold"></field>
    </qlik-initial-selections>

     
    Here is my current integration code:

    import React from 'react';
    import { QlikEmbed as QlikEmbedAnalytics, QlikEmbedConfig, HostConfig } from '@qlik/embed-react';

    interface QlikEmbedProps {
    appId: string;
    sheetId: string;
    }

    const hostConfig: HostConfig = {
    authType: 'Oauth2',
    clientId: '<client-id>',
    // clientSecret,
    accessTokenStorage: 'session',
    redirectUri: 'http://localhost:3000/oauth-callback.html',
    // apiKey: import.meta.env.VITE_QLIK_API_KEY,
    host: import.meta.env.VITE_QLIK_HOST,
    };

    const QlikEmbed: React.FC<QlikEmbedProps> = ({ appId, sheetId }) => {
    return (
    <QlikEmbedConfig.Provider value={hostConfig}>
    <QlikEmbedAnalytics
    ui="analytics/sheet"
    context={{
    interactions: { active: true, select: true, edit: false, passive: false },
    }}
    appId={appId}
    sheetId={sheetId}
    theme="WunderMobilityTheme"
    />
    </QlikEmbedConfig.Provider>
    );
    };

    export default QlikEmbed;
    Show Less
  • forum

    Data Movement & Streaming

    Get current selection with @qlik/embed-react

    I have used @qlik/embed-react to embed qlik cloud in reactjs and i want to get current selection in my reactJS app. i am embedding selection bar using... Show More

    I have used @qlik/embed-react to embed qlik cloud in reactjs and i want to get current selection in my reactJS app. 
    i am embedding selection bar using below code 

    <QlikEmbed  ui="analytics/selections" appId={appId} />

    and getting app instance using QlikEmbedConfig context
     
      const hostConfig = useContext(QlikEmbedConfig);
      const app = useApp(appId, hostConfig);
     
    and also have a hook useApp :

    export const useApp = (appId, hostConfig) => {
      const [app, setApp] = useState(null);

      useEffect(() => {
        const getApp = async () => {
          const session = qix.openAppSession({ appId, hostConfig });
          const doc = await session.getDoc();
          setApp(doc);
        };
        if (hostConfig) {
         return app;
        }
      }, [appId, hostConfig]);

      return app;
    };


    can anyone please help me how i get selection/filters values for current sheet
    Anurag2_0-1733298639136.png

    Please help me here.



    Show Less
  • forum

    Integration, Extension & APIs

    Enabling the native 'Styling' panel in an extension

    Hi devs,Is there a way to enable the native chart styling option/panel in an extension?I can set the object background usingelement.closest('.qv-inner... Show More

    Hi devs,

    Is there a way to enable the native chart styling option/panel in an extension?

    Andr_0-1749615678920.png

    I can set the object background using
    element.closest('.qv-inner-object').css('background-color', 'transparent');
    here set to transparent, but can be any color either hard-coded or set via color-picker in a custom accordion item, but would be good if we could access the native styling panel? Is it possible?

    Cheers!

    Show Less
  • forum

    App Development

    JSON Loading

    Hi all,I saw that in the latest version of QS (May 2025), JSON loading is now supported natively. Do we have any demo or example showing how this work... Show More

    Hi all,

    I saw that in the latest version of QS (May 2025), JSON loading is now supported natively. Do we have any demo or example showing how this works?

    Thank you.

    Show Less
Leaderboard

Customer Story

Optimizing Food Relief with Qlik

Qlik empowers Foodbank Victoria with real-time data insights, optimizing food acquisition and distribution to deliver 25 million meals annually while reducing waste and costs across its statewide relief efforts.

Customer Story

Data-Driven Strategies Set To Fuel Growth

Qlik accelerates decision-making at Alpha Auto Group, enabling seamless data integration and automation across dealerships, cutting reporting times, and driving scalable business growth.

Customer Story

Revolutionizing aircraft production through Data Analytics

Qlik Data Integration transforms Airbus' aircraft production, leading to over 150 replication tasks and informing more efficient analysis.

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!