Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,279 members
  • 5,197 online
  • 1,996,439 posts
  • 149,649 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum
  • forum

    Security & Governance

    "Qlik Sense Exploited in Cactus Ransomware Campaign": Is this true? Does Qlik h...

    Greetings! I just saw this article about a supposed ransomware security risk in QliK Sense and would like to receive instructions on what to do (if tr... Show More

    Greetings!

    I just saw this article about a supposed ransomware security risk in QliK Sense and would like to receive instructions on what to do (if true):

    https://www.arcticwolf.com/resources/blog/qlik-sense-exploited-in-cactus-ransomware-campaign/

    Customers are asking us about it, but I can't find anything related to this issue in the community.  Please advise and referer to @diagonjope in your note, so that I can get a notification.

    Cheers,

    ++José

    Show Less
  • forum

    App Development

    How to display an images from a value field from a DB Oracle

    The difficulty is that the image (jpg) is stored as a value in an Oracle DB. The image value is in hexadecimal (Start with FFD8FFE0…). I cannot found ... Show More

    The difficulty is that the image (jpg) is stored as a value in an Oracle DB.

    The image value is in hexadecimal (Start with FFD8FFE0…).

    I cannot found a way to display the image on Qlik Sense.

     

    How to display the image from the field value ?

    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

    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

    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

    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

    New to Qlik Analytics

    Qliksense sorting order of tasks on the startpage of QMC

    Hello everyone. I have a question. is it possible to sort the view on the start page of the QMC. When I open the QMC i always need to scroll down to o... Show More

    Hello everyone.

    I have a question.

    is it possible to sort the view on the start page of the QMC.

    When I open the QMC i always need to scroll down to open a tasks (see picture).

    I want to know if it is possible to sort this view, so the most interested views are always o top top of the list.

    I 've tried to use special caracters for the name (like #, _) but this doesn't helps.

    Anyone know if this is possible or not?

     

     

    Show Less
  • 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
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!