Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,273 members
  • 5,496 online
  • 1,996,428 posts
  • 149,646 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    App Development

    Nested Set Analysis No Aggregation

    Hi, this has been driving me nuts and wondered if anyone would be able to help. So I have 2 tables, the first is in a table chart on a sheet, and I ne... Show More

    Hi, this has been driving me nuts and wondered if anyone would be able to help.

    So I have 2 tables, the first is in a table chart on a sheet, and I need to retrieve 2 fields from the 2nd one using set analysis:

    Field 1 Field 2 Field 3 Analysis 1 Analysis 2
    1 A V    
    2 B W    
    3 C X    
    4 D Y    
    5 E Z    

     

    Field 1 Field 4 Field 5 Field 6
    1 AAA 01/01/2024 Op1
    1 BBB 01/02/2024 Op2
    1 AAA 01/03/2024 Op2
    2 BBB 01/04/2024 Op1
    2 AAA 01/05/2024 Op3
    2 BBB 01/06/2024 Op4

     

    In the first table for Analysis 1, I have the following at it works great to retrieve the max date value:

    =MAX( {$<[Field 4] = {'AAA'}>} DATE( [Field 5], 'dd-MMM-yyyy'))

    In Analysis 2, I need the corresponding Field 6 that matches the Max Date.

    My latest attempt was to use this as a nested set analysis without aggregation, but it returns blanks for all records:

    ONLY( {$< [Field 5] = {"MAX( {$<[Field 4] = {'AAA'}>} DATE( [Field 5], 'dd-MMM-yyyy'))"}>} [Field 6])

     

    Show Less
  • forum

    New to Qlik Analytics

    Disappearing table object field as intended behavior of "Save layout" option in ...

    Hi all,1. I created a sheet with a one table object2. End users have bookmarks with "Save layout" checked on top of that sheet with reordered fields i... Show More

    Hi all,

    1. I created a sheet with a one table object
    2. End users have bookmarks with "Save layout" checked on top of that sheet with reordered fields in table and some filters applied
    3. I added a new field to that table and published it
    4. When they apply bookmark, filters and the sorting of fields is applied correctly, but what I see as a problem is that the newly added field disappears from the table.

    In other words, end users see a new field in the table until mentioned bookmark is applied. I tried this also on the cloud, where it is the same. Is this intended behavior or a bug? Thanks in advance for the answer.

    SaveLayoutIssue.gif

    Show Less
  • forum

    New to Qlik Analytics

    Loop

    I am trying to download data from hubspot loop is not getting all only first set every time i need to pass output value to URL using this variable (vR... Show More

    I am trying to download data from hubspot

    loop is not getting all only first set

    every time i need to pass output value to URL using this variable (vRowCount)

    i test with postman 

    ////////////below my script
    LIB CONNECT TO 'HubspotContacts'
    do while vMore = 'True';
     Trace($(vRowCount));
     
     
    RestConnectorMasterTable:
    SQL SELECT 
    "has-more",
    "vid-offset",
    "__KEY_root",
    (SELECT 
    "vid" AS "vid_u0",
    "canonical-vid",
    "portal-id" AS "portal-id_u0",
    "is-contact",
    "addedAt",
    "__KEY_contacts",
    "__FK_contacts",
    (SELECT 
    "__KEY_properties",
    "__FK_properties",
    (SELECT 
    "value",
    "__FK_hs_email_last_send_date"
    FROM "hs_email_last_send_date" FK "__FK_hs_email_last_send_date"),
    (SELECT 
    "value" AS "value_u0",
    "__FK_lastmodifieddate"
    FROM "lastmodifieddate" FK "__FK_lastmodifieddate"),
    (SELECT 
    "value" AS "value_u1",
    "__FK_hs_email_delivered"
    FROM "hs_email_delivered" FK "__FK_hs_email_delivered"),
    (SELECT 
    "value" AS "value_u2",
    "__FK_salesforcecontactid"
    FROM "salesforcecontactid" FK "__FK_salesforcecontactid"),
    (SELECT 
    "value" AS "value_u3",
    "__FK_salesforceaccountid"
    FROM "salesforceaccountid" FK "__FK_salesforceaccountid")
    FROM "properties" PK "__KEY_properties" FK "__FK_properties")
    FROM "contacts" PK "__KEY_contacts" FK "__FK_contacts")
    FROM JSON (wrap on) "root" PK "__KEY_root"
    HTTPHEADER "Authorization" "Bearer  ABABABABABA");
     
     
    [hs_email_last_send_date]:
    LOAD [value],
    [__FK_hs_email_last_send_date] AS [__KEY_properties]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_hs_email_last_send_date]);
     
     
    [lastmodifieddate]:
    LOAD [value_u0] AS [value_u0],
    [__FK_lastmodifieddate] AS [__KEY_properties]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_lastmodifieddate]);
     
     
    [hs_email_delivered]:
    LOAD [value_u1] AS [value_u1],
    [__FK_hs_email_delivered] AS [__KEY_properties]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_hs_email_delivered]);
     
     
    [salesforcecontactid]:
    LOAD [value_u2] AS [value_u2],
    [__FK_salesforcecontactid] AS [__KEY_properties]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_salesforcecontactid]);
     
     
    [salesforceaccountid]:
    LOAD [value_u3] AS [value_u3],
    [__FK_salesforceaccountid] AS [__KEY_properties]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_salesforceaccountid]);
     
     
    [properties]:
    LOAD [__KEY_properties],
    [__FK_properties] AS [__KEY_contacts]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_properties]);
     
     
    [contacts]:
    LOAD [vid_u0] AS [vid_u0],
    [canonical-vid],
    [portal-id_u0] AS [portal-id_u0],
    [is-contact],
    [addedAt],
    [__KEY_contacts],
    [__FK_contacts] AS [__KEY_root]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_contacts]);
     
     
    [root]:
    LOAD [has-more] ,
    [vid-offset] ,
    [__KEY_root]
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__KEY_root]);
     
     
    let vMore =peek('has-more',0,'root');
    let vRowCount =peek('vid-offset',0,'root');
    DROP TABLE RestConnectorMasterTable;
     
    loop
    Show Less
  • forum

    New to Qlik Analytics

    splitting returned record field into multiple records

    Hi I need to split the following table into a more readable format in the load statement. From this Area Post Sectors A ['PE33 0', 'PE33 9', 'PE3... Show More

    Hi

    I need to split the following table into a more readable format in the load statement.

    From this

    Area Post Sectors
    A ['PE33 0', 'PE33 9', 'PE34 3']
    B ['NG13 0', 'NG13 9', 'NG23 5', 'NG24 4']

     

    To this

    Area Post Sectors
    A PE33 0
    A PE33 9
    A PE34 3
    B NG13 0
    B NG13 9
    B NG23 5
    B NG24 4

     

    Any ideas please?

    Show Less
  • forum

    Qlik NPrinting

    QlikView May 2023 Compatibility with NPrinting

    Hello NPrinting Community! Please check out this Blog post and article as soon as possible if you are considering upgrading QlikView to 12. 8 track. h... Show More

    Hello NPrinting Community!

    Please check out this Blog post and article as soon as possible if you are considering upgrading QlikView to 12. 8 track.

    https://community.qlik.com/t5/Support-Updates/QlikView-May-2023-release-and-Qlik-NPrinting-Do-not-upgrade/ba-p/2074371

    https://community.qlik.com/t5/Official-Support-Articles/QlikView-May-2023-Compatibility-with-NPrinting/ta-p/2076472

    Kind regards...

    Show Less
  • forum

    App Development

    Formatting Data in Tables / Pivot Tables

    Hi All. Having done some research I suspect I cannot get to what I want to achieve here, but this community has been great at helping so here goes. I ... Show More

    Hi All.

    Having done some research I suspect I cannot get to what I want to achieve here, but this community has been great at helping so here goes.

    I want to produce a table which is formatted in a more grouped manner (similar to a Pivot Table maybe), but rather than showing measures in the columns I need to show Dimensions - see example:

    Category & Control In Scope Implemented Evidenced Evidence Description
    Asset Management        
    - Asset Ownership Y Y Y Policy Document
    - Return of Assets Y N    
    - Inventory of Assets N      
    People Controls        
    - Employee Screening Y Y Y HR File Records

     

    In my ideal output rows would be grouped by the Category with the 'Controls' grouped by category (e.g. - Asset Ownership).

    Is there functionality in Qlik to do this, or if not are you aware of a extention which might help?

    Thanks once again.

     

    Mark.

    Show Less
  • forum

    Job Board

    Need Assistance For Qlik QSDA2022 Exam

    I'm preparing for my Qlik QSDA2022 certification exam and seeking the best resources. Could someone recommend an QSDA2022 practice test?
  • forum

    Integration, Extension & APIs

    Publish to Managed Stream 404 error

    Hello... I'm trying to publish an app from a shared space to a managed space. Using, Rest, Qlik CLI, and Qlik SDK I'm getting the same 404 error. I cr... Show More

    Hello...

    I'm trying to publish an app from a shared space to a managed space.

    Using, Rest, Qlik CLI, and Qlik SDK I'm getting the same 404 error. I created an automation and that worked okay.

    When I go to the URL for the app its fine, I return the json. Same if I look at /scripts, that works fine too

    However when I look at 

    https://xxxxxxx.us.qlikcloud.com/api/v1/apps/73b24e00-bf66-4228-8065-44d55eb5ba7b/publish

    I get a 404 error, which is the same error all the API are returning.

    Everything else seems to be working fine, does anyone know why there's a 404 on this page?

    qlik app publish create 73b24e00-bf66-4228-8065-44d55eb5ba7b --spaceId="66311b85b13342805b11e332" -v

    Response time: 643ms
    Status: 404 Not Found
    Error: 404 - Not Found (empty response)

     

    Space details:

    "createdAt": "2024-04-30T16:25:41.937Z",
    "createdBy": "6580520ea968030de1483f82",
    "description": "",
    "id": "66311b85b13342805b11e332",
    "meta": {
    "actions": [
    "change_owner",
    "create",
    "delete",
    "read",
    "update"
    ],
    "assignableRoles": [
    "basicconsumer",
    "consumer",
    "contributor",
    "dataconsumer",
    "facilitator",
    "operator",
    "publisher"
    ],
    "roles": []
    },
    "name": "Managed",
    "ownerId": "6580520ea968030de1483f82",
    "tenantId": "xxxxxxxxxxxxxxxxxxxxxxxx",
    "type": "managed",
    "updatedAt": "2024-04-30T16:25:41.937Z"
    }

     

    Application details

    {
    "attributes": {
    "_resourcetype": "app",
    "createdDate": "2024-04-30T15:57:28.367Z",
    "custom": {},
    "description": "XXXXX",
    "dynamicColor": "",
    "encrypted": true,
    "hasSectionAccess": false,
    "id": "73b24e00-bf66-4228-8065-44d55eb5ba7b",
    "isDirectQueryMode": false,
    "lastReloadTime": "2024-04-30T17:03:42.230Z",
    "modifiedDate": "2024-04-30T17:03:43.153Z",
    "name": "Data Gateway",
    "originAppId": "",
    "owner": "",
    "ownerId": "6580520ea968030de1483f82",
    "publishTime": "",
    "published": false,
    "spaceId": "66311ae57c1e52122254af4d",
    "thumbnail": "",
    "usage": "ANALYTICS"
    },
    "create": [
    {
    "canCreate": true,
    "resource": "sheet"
    },
    {
    "canCreate": true,
    "resource": "bookmark"
    },
    {
    "canCreate": true,
    "resource": "snapshot"
    },
    {
    "canCreate": true,
    "resource": "story"
    },
    {
    "canCreate": true,
    "resource": "dimension"
    },
    {
    "canCreate": true,
    "resource": "measure"
    },
    {
    "canCreate": true,
    "resource": "masterobject"
    },
    {
    "canCreate": true,
    "resource": "variable"
    }
    ],
    "privileges": [
    "read",
    "update",
    "delete",
    "export",
    "change_owner",
    "export_reduced"
    ]
    }

    Show Less
  • forum

    App Development

    Removing scroll bar in qlik pivot so that we sre able to view all the columns

    Hi , I have a requirement to view a 24 month period on a pivot , but there should not be a scroll.   Isthere a way to disable the scroll on a pivot? Show More

    Hi , I have a requirement to view a 24 month period on a pivot , but there should not be a scroll.

     

    Isthere a way to disable the scroll on a pivot?

    Show Less
  • forum

    Qlik Cloud Data Integration

    Upgrade Qlik Sense 2021

    Hi Dears,   we're facing an issue with upgrading Qlik Sense 2021,  First, I'm unable to upgrade Qlik sense duo to PostgreSQL 9.6. I tried to Upgrade t... Show More

    Hi Dears,

     

    we're facing an issue with upgrading Qlik Sense 2021, 

    First, I'm unable to upgrade Qlik sense duo to PostgreSQL 9.6.

    I tried to Upgrade the PostgreSQL 9.6 with the current available version in the download section but all of the available versions not compatible with the current PostgreSQL 9.6.

    Kindly, any idea how to upgrade the PostgreSQL 9.6 or if you have the download link for the compatible version with 9.6 before I upgrade to the latest.

     

    BsuinessSO_0-1714301392565.png

    I have the following along with qliksenseserver 14.20.10

    • About Service 1.28.0
    • App Migration Service 4.12.2
    • Bot Channel Service to enable chat experience through channels like Slack/Teams 1.19.0
    • Broker Service 5.35.0
    • Capability Service 1.9.1
    • Client 7.233.12
    • Cross-applications search for nl questions 1.16.0
    • Data Preparation Service 3.316.3
    • Dependency Graph Service 1.2.0
    • Dev Hub 1.21.0
    • Download Preparation Service 1.2.5
    • Freya Client Service 2.13.0
    • Licenses service 3.81.0
    • Mobility Registrar Service 1.1.0
    • Monitoring Apps 8.7.0
    • Natural-language broker, a front-facing API for NL utterances 3.14.5
    • Natural-language understanding parser service 0.105.5
    • Notifier service 1.2.0
    • ODAG Service 3.20.1
    • Precedents Service 3.7.0
    • Printing Service 15.31.0
    • Proxy 14.6.0
    • QDC Catalog Service 0.20.2
    • QIB Webchat Service 1.6.1
    • QIX Engine 12.969.6
    • Qlik DataMarket Connector 2.11.0.28
    • Qlik Essbase Connector 1.5.0
    • Qlik Management Console 1.95.1
    • Qlik ODBC Connector 6.118.2
    • Qlik REST Connector 2.82.0
    • Qlik SalesForce Connector 15.74.0
    • Qlik Sense Hub 0.57.4
    • Qlik Web Connectors 4.3.5
    • Repository 28.0.6
    • Scheduler 19.4.0
    • Service Dispatcher 15.17.0
    • Web Extension Service 1.10.0
    • Web Extensions 1.6.0

     

     

    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!