Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 219,299 members
  • 6,019 online
  • 1,998,136 posts
  • 149,807 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    Integration, Extension & APIs

    JWT session time limit

    Hello everybody! I'm setting up an integration with Json Web Token (JWT) and I want to create sessions longer than an hour, is this possible?   The pa... Show More

    Hello everybody!

    I'm setting up an integration with Json Web Token (JWT) and I want to create sessions longer than an hour, is this possible?

     

    The payload I am using is the following:

    const payload = {
          jti: uid.sync(32),
          sub: `${userName}`, // Usuário obtido do banco de dados
          subType: "user",
          name: `${userName}`,
          email: `${email}`,	
          email_verified: true,
          iat: Math.floor(Date.now() / 1000),
          exp: Math.floor(Date.now() / 1000) + 60 * 60, //Here I want to increase the timeout to more than an hour
          nbf: Math.floor(Date.now() / 1000),
          iss: "myISS",
          aud: "qlik.api/login/jwt-session",
          groups: [
            "Analytics Admin",
            "Data Admin",
            "Data Space Creator",
            "Developer",
            "Managed Space Creator",
            "Shared Space Creator",
            "Tenant Admin",
          ],
        };

     

    Show Less
  • forum

    Integration, Extension & APIs

    Correct management of sessions between QlikSense and third party website

    Hello! We have QlikSense on prem; at the authentication level, we would like to connect a website where users authenticate using Office365 accounts, t... Show More

    Hello!

    We have QlikSense on prem; at the authentication level, we would like to connect a website where users authenticate using Office365 accounts, to the QlikSense application.

    I'll try to explain our need: we have a website; users authenticate with their Office365 accounts. They exists also on QlikSense in the users list because the list is automatically updated every day. I want that when a user log in into the website, he is authenticated also on QlikSense. 

    How can I accomplish this?

    I tried to explore the solutions in the documentation, bot got lost.

    Thank you

     

    Show Less
  • forum

    New to Qlik Analytics

    Quarterly rolling sum

    Hi, I would like to calculate rolling sum like in the table below. Data should be grouped by column "Family". For each quarter I want to take a look a... Show More

    Hi, I would like to calculate rolling sum like in the table below. Data should be grouped by column "Family". For each quarter I want to take a look at current quarter and 2 quarters backwards. Any idea how to achieve this in script editor? I am not interested in set analysis using rangesum - above combination. Column "Quarter" comes from fiscal master calendar.

    Thank you.

    Family Quarter Qty RollingSum3 Family,Quarter,Qty
    A FY2023Q2 10 10 A,FY2023Q2,10
    A FY2023Q3 20 30 A,FY2023Q3,20
    A FY2023Q4 30 60 A,FY2023Q4,30
    A FY2024Q1 40 90 A,FY2024Q1,40
    A FY2024Q2 50 120 A,FY2024Q2,50
    A FY2024Q3 60 150 A,FY2024Q3,60
    A FY2024Q4 70 180 A,FY2024Q4,70
    B FY2023Q2 5 5 B,FY2023Q2,5
    B FY2023Q3 10 15 B,FY2023Q3,10
    B FY2023Q4 15 30 B,FY2023Q4,15
    B FY2024Q1 20 45 B,FY2024Q1,20
    B FY2024Q2 25 60 B,FY2024Q2,25
    B FY2024Q3 30 75 B,FY2024Q3,30
    B FY2024Q4 35 90 B,FY2024Q4,35
    Show Less
  • forum

    New to Qlik Analytics

    Only show the newest date (valid from)

    Hi there 🙂 I have a list of products with list prices and different valid-from dates to this prices. Now I simply want to show only the newest valid-... Show More

    Hi there 🙂

    I have a list of products with list prices and different valid-from dates to this prices. Now I simply want to show only the newest valid-from dates (one per product). Thats it 😄 

    Coud you please help me out with the script function. Attached you find the table load.

    Thanks a lot!
    Pesche

    Show Less
  • forum

    New to Qlik Analytics

    Modelling of P&L table with different variables per line

    I need to modify an existing P&L table with several scenarios (using the Vizlib solution with external Excel table).Is it possible in a P&L table to u... Show More

    I need to modify an existing P&L table with several scenarios (using the Vizlib solution with external Excel table).

    Is it possible in a P&L table to use different factors per line?

    sum(  Value* $(=PL_View_Factor_Best) )

    I get the right calculation, when the factor is the same for all lines, but when using different values or even a conditional value for different scenarios, it returns no value.

    Is there another/better way to solve this?

    Show Less
  • forum

    Qlik Application Automation

    Export of data in a table

    I need to export data from a straight table as a CSV file without BOM and semicolon formatted.  In other cases I have been running a vb script that ex... Show More

    I need to export data from a straight table as a CSV file without BOM and semicolon formatted. 

    In other cases I have been running a vb script that exports data, but I havne't been able to find the one mentioned above.

    I also have another request,which is to add one first line with a fixed text. Any suggestions.

    We are using QlikView 12.60

    /John

    Show Less
  • forum

    App Development

    How to abstract a measure for all the different employees?

    I made a measure for taking into account the efficiency of certain producers  ( Sum( Aggr( Count( {< ACTION_CODE = {'LABOR_OFF'}>} dist... Show More

    I made a measure for taking into account the efficiency of certain producers 

    (
    	Sum(
        	Aggr(
            	Count( {< ACTION_CODE = {'LABOR_OFF'}>} distinct MainSFC) * Standard_Time,
                MainSFC)
    	)
    )
    /
    (
    	Count( 
        	distinct WorkingDay) 
            * 7.5 * 60)

     

    And it works fine for the single producer. I want to abstract this, make one that takes into consideration ALL of the producers/employees, so in my mind I tried to do: 

     

    (
    	Sum( {<Employee=>}
        	Aggr(
            	Count( {< ACTION_CODE = {'LABOR_OFF'}, Employee=>}} distinct MainSFC) * Standard_Time,
                MainSFC)
    	)
    )
    
    /
    
    (
    	Count( {<Employee=>}
        	distinct WorkingDay) 
            * 7.5 * 60)

     

    But this doesn't work, and gives me null values. How could I fix this? 

    Show Less
  • forum

    New to Qlik Analytics

    Graphique combiné qlik cloud

    Bonjour, j'aimerais reproduire ce graphique ci-dessous sur qlik cloud mais je ne sais pas comment m'y prendre. ça a l'air d'une boite à  moustache mai... Show More

    Bonjour,

    j'aimerais reproduire ce graphique ci-dessous sur qlik cloud mais je ne sais pas comment m'y prendre. ça a l'air d'une boite à  moustache mais c'est un graphique combiné. J'arrive à faire les barres pas l'espèce de bâton.

    Merci d'avance pour votre aide.

    Fti_0-1715592944163.png

     

    Show Less
  • forum

    App Development

    How to pass parameter values (dates) from dashboard to data load editor

    Hi, Can somebody guide me through creating an application that has two variables vStartDate and VEndDate which will be configured by the user of the a... Show More

    Hi,

    Can somebody guide me through creating an application that has two variables vStartDate and VEndDate which will be configured by the user of the application (not in the load script but in the dashboard) and with the reload button the corresponding data will load?

     

     

     

     

     

    Show Less
  • forum

    Qlik Replicate

    Encrypting Data in Qlik replicate

    Hi Team,   We need to encrypt PII columns from the source and also need to decrypt them if needed. Any ideas how can we do it  . Sources : Oracle, SQL... Show More

    Hi Team,

     

    We need to encrypt PII columns from the source and also need to decrypt them if needed.

    Any ideas how can we do it  .

    Sources : Oracle, SQL Server

    Target: Postgresql 

     

     

    Regards,

    Gayatri,

    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!