Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 216,928 members
  • 9,199 online
  • 1,994,310 posts
  • 149,439 Solutions
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW

Welcome to Qlik Community

Recent Discussions

  • forum

    New to Qlik Analytics

    Formula for the measure

    Please tell me how to correctly write the formula for the measure of a diagram: If the variable “filename” contains “AP”, then calculate the ratio of ... Show More

    Please tell me how to correctly write the formula for the measure of a diagram:

    If the variable “filename” contains “AP”, then calculate the ratio of the number of values “1” for the variable “Code by Classifier” to the number of the sum of values “1” and “0” for the variable “Code by Classifier”

     

    I tried two formulas, but both did not work correctly, it seems to me:

    1. If(WildMatch(filename, '*АР*'), 

       Count(If([Code by Classifier] = 1, 1, 0)) / Count(If([Code by Classifier] = 1 or [Code by Classifier] = 0, 1, 0))

    )

    2. Count({< [Code by Classifier] = {"1"}, [filename]={"*АР*"} >} [Code by Classifier]) / Count({< [Code by Classifier] = {"0", "1"}, [filename]={"*АР*"} >} [Code by Classifier])

    Show Less
  • forum

    New to Qlik Analytics

    How to concatenate 2 tables

    Hi, I try to concatenate these 2 tables and the fields from the budget one (.xlsx) results in nulls as you can see in the image attatched, where I kno... Show More

    Hi,

    I try to concatenate these 2 tables and the fields from the budget one (.xlsx) results in nulls as you can see in the image attatched, where I know there are values. Is there something wrong? 

    Many thanks!!!

    This is the code: 

    LIB CONNECT TO 'Amazon_Redshift_redshift-dwh.cwafb1bxivm3.eu-west-1.redshift.amazonaws.com';
    budget:
    LOAD
        "Código del evento" as event_code,
        event_end_time as budget_event_end_time,
        timestamp(FECHA) AS budget_date,
        "NUMERO DE TICKETS" as budget_quantity,
        PRECIO as budget_price,
        "BOOKING FEE" as budget_fee,
        "GROSS REVENUE" as budget_gross_revenue,
        round(num(Interval(event_end_time - timestamp(FECHA), 'DD'))/7,2) AS weeks_left_to_event
    FROM [lib://DataFiles/Ticketing 2024.xlsx]
    (ooxml, embedded labels, table is [Hoja 3]);
     
    concatenate (budget)
     
    LOAD "event_id",
        "event_name",
        "event_country",
        "event_date",
        capacity,
        "event_code",
        "ticket_id",
        "cashless_paid_credits",
        quantity,
        "ticket_type",
        "sold_date",
        "ticket_date",
        "ticket_category",
        status,
        "event_currency",
        "gbp_rate",
        "eur_rate",
        "base_amount",
        "fee_amount",
        "total_amount",
        email,
        "customer_country",
        city,
        age,
        gender,
        "age_group",
        "year_event",
        "month_event",
        "days_left_to_event",
        "weeks_left_to_event",
        "months_left_to_event",
        babb,
        "previous_event_code",
        "event_end_time",
        "event_to_compare",
        "previous_day_sales",
        "marketing_total_spend",
        cpa;
        
     
    SELECT 
     
    "event_id",
    "event_name",
    "event_country",
    "event_date",
    capacity,
    "event_code",
    "ticket_id",
    "cashless_paid_credits",
    quantity,
    "ticket_type",
    "sold_date",
    "ticket_date",
    "ticket_category",
    status,
    "event_currency",
    "gbp_rate",
    "eur_rate",
    "base_amount",
    "fee_amount",
    "total_amount",
    email,
    "customer_country",
    city,
    age,
    gender,
    "age_group",
    "year_event",
    "month_event",
    "days_left_to_event",
    "weeks_left_to_event",
    "months_left_to_event",
    babb,
    "previous_event_code",
    "event_end_time",
    "event_to_compare",
    "previous_day_sales",
    "marketing_total_spend",
    cpa
    FROM "dbt_xavi_marts"."marts_event_ticketing";
     
     
     
    Show Less
  • forum

    App Development

    When Sheet Headers are disabled for an app, the sheet navigation arrows disappea...

    Hello, Just wondering if this "works as designed" or if it's a bug. In Qlik Sense Enterprise, when you go into an app's settings and select Disable Sh... Show More

    Hello,

    Just wondering if this "works as designed" or if it's a bug. In Qlik Sense Enterprise, when you go into an app's settings and select Disable Sheet Header, the nav icons "<>" are no longer present. This may seem obvious, but I was told by someone that in Qlik Sense Cloud, they appear in a different location.  So I was wondering if that claim was true and if they should also be visible in Qlik Sense client-managed as well. 

    Thank you

    Steve

    Show Less
  • forum

    Qlik Enterprise Manager

    compatibility question

    Hello, Is it possible to have a Qlik Enterprise manager version November 2023 hosted on a Windows server, that manages Linux hosted Qlik Replicate ser... Show More

    Hello,

    Is it possible to have a Qlik Enterprise manager version November 2023 hosted on a Windows server, that manages Linux hosted Qlik Replicate server, version May 2022?

    Show Less
  • forum

    Qlik Replicate

    Failed to remove file:

    Today we had an error on one of our Qlik Replicate tasks "Failed to remove file:" Processing aborted due to error 300002:1355844283; incident 3722464.... Show More

    Today we had an error on one of our Qlik Replicate tasks "Failed to remove file:" 
    Processing aborted due to error 300002:1355844283; incident 3722464.
    to execute statement: REMOVE @"PROD"."PUBLIC"."ATTREP_IS_PROD_bf071f72_b1f9_4dc7_b2f8_919759658d9c"/bf071f72_b1f9_4dc7_b2f8_919759658d9c/0/CDC00000215.csv;

     

    What does this error mean?  

    Show Less
  • forum

    Qlik Application Automation

    Get qlik sense api list

    Is it possible to get the list of all the apps from Qlik sense using an Api? if yes, please provide a sample Api.
  • forum

    New to Qlik Analytics

    HOW LOAD ONLY TABLE STRUCTURE and NO RELATION?

    Hello communityi made a post aksing for help to load and empty table, at the end i could find a solution, using a where 1=2 on the consult,but the pro... Show More

    Hello community

    i made a post aksing for help to load and empty table, at the end i could find a solution, using a where 1=2 on the consult,

    but the problem its that im trying to load field from TABLES in SAT DATA BASE, so

    i desing this, in order to load this tables, but as i understand qlik always look in the record on the tables, that means if i say 1=2 i know this is false and the result will be none data, but qlik dont understand that way, making this consult take like 30 min or more to load only empty fields, so i wanna know if there is a way to load the empty field, by telling qlik bring ONLY THE FIELD AND DONT LOOK IN THE RECORDS or always will be that way? cuase i really need load like 40 Tables and we are talking about like tables that contains records from many many year, you will say add a filter in the field of years, the problems is that the field year can be called in diferent ways in diferent tables, and some other dont have that field, so finally im thinking in something simple, JUST BRING THE FIELDS AND NO DATA. Is that posible? one more thing i know qlik make relation and i try to cancel this with a no concatenate but it dont work is there a way to cancel the relation beside the Qualify sentence?

     

     

    Set vTablas1 = 'MARD','MBEW','MSEG','T001','T001L','T001W';
    set vfield = 'BURKS', 'WERKS';
    FOR  each i in $(vTablas1)  
     let WhereClause = '1';
    	for each j in $(vfield)
        let fieldexist = FieldNumber('$(j)','$(i)');
        if $(fieldexist) > 0 then
    		LET FieldValue = IF('$(j)' = 'BURKS', '1000', '1081');
            LET WhereClause = '$(WhereClause) AND $(j) = "$(FieldValue)"';
            End If;
            next j;
      Qualify*;      
        '$(i)':
        LOAD 
        * ;
        SQL SELECT * FROM $(i) where 1=0;
    NEXT i

     

     

     

    Show Less
  • forum

    Integration, Extension & APIs

    Route multiple QlikSense servers through Nginx

    Hello everyone, We have 2 QlikSense servers in our internal infrastructure and we want to expose these 2 servers externally, through Nginx.We would li... Show More

    Hello everyone,

    We have 2 QlikSense servers in our internal infrastructure and we want to expose these 2 servers externally, through Nginx.
    We would like to be able to access these servers via ourdomain.com/qliksense1 and ourdomain.com/qliksense2.
    Is it possible to configure Nginx to allow this?

    Furthermore, we also require virtual proxies for some of our custom apps and we would like to be able to access the virtual proxy via ourdomain.com/qliksense1/virtualproxy and ourdomain.com/qliksense2/virtualproxy.
    Is this possible?


    Thank you!

    Show Less
  • forum

    New to Qlik Analytics

    How to give access to users at certain stream in Qlik Sense Enterprise?

    hi, i found an old guide about this topic but the links are broken now, it's missing the 'Add ticket' link.does anybody know if there is a new guide? ... Show More

    hi, i found an old guide about this topic but the links are broken now, it's missing the 'Add ticket' link.
    does anybody know if there is a new guide?

    Thanks
    Edoardo

    GUIDE: https://help.qlik.com/en-US/sense/1.1/Subsystems/ManagementConsole/Content/ServerUserGuide/SUG_ConfiguringSecurity_Environment_AccessControl_UserAttributes_Example1.htm?_ga=2.22500539.1290480764.1713276169-1521824740.1713276168

    Show Less
  • forum

    Qlik Enterprise Manager

    How to configure Qlik after installing Qlik via QPI tool

    Hi,   On a new server I used the Qlik PostgreSQL Installer (QPI) tool to install a new PostgreSQL 14.8 database. Then I installed Qlik Sense Enterpris... Show More

    Hi,

     

    On a new server I used the Qlik PostgreSQL Installer (QPI) tool to install a new PostgreSQL 14.8 database. Then I installed Qlik Sense Enterprise February 2024 release. All went well and all services are started

    Then when I want to access the QMC or HUB via the browser, it returns a default error that the page cannot be reached. Which steps do I have to take now?

    When I use the QlikSenseUtil.exe in the C:\Program Files\Qlik\Sense\Repository\Util\QlikSenseUtil folder and check the connection, it only displays that port 4432 can be reached. What about 80 and 443? Probably I'm missing some steps after installing Qlik Sense enterprise.

     

    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!