Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 216,933 members
  • 7,566 online
  • 1,994,317 posts
  • 149,439 Solutions

Welcome to Qlik Community

Recent Discussions

  • forum

    QlikView Administration

    Trying to find how a field is being calculated.

    I'm working on converting some reports from QlikView over to SSRS. I'm looking for this calculation in particular (screenshot). I know that REMAINING_... Show More

    I'm working on converting some reports from QlikView over to SSRS.

    I'm looking for this calculation in particular (screenshot). I know that REMAINING_HOURS is not an actual column in the OPERATION table in the database and that there's a calculation being done to get REMAINING_HOURS.  I can't find how it's being calculated though.

    When I go to Edit Scripts... and look at the Operation tab, I don't see anything referencing REMAINING_HOURS.

    I'll also say that Production Schedule is a report within this .qvw and that I'm also not a frequent or seasoned user of QlikView.

    Could anyone point me towards where I can view how this field is being calculated?

    Show Less
  • forum

    QlikView Administration

    Revert Application To Previous Version

    I am new to administration for Qliksense. I published an app from Dev (QMC2) into Prod (QMC) which overwrote it. That was the wrong app so I am being ... Show More

    I am new to administration for Qliksense. I published an app from Dev (QMC2) into Prod (QMC) which overwrote it. That was the wrong app so I am being told to revert back to the previous version of the app. How can I do that? Is it possible?

    Show Less
  • forum

    New to Qlik Analytics

    Remove null concatenation in pivot table

    Hi, I am new to qlik,I have a pivot table with the dimensions group and subgroup.the group field is a concatenation of group number and the group name... Show More

    Hi, I am new to qlik,
    I have a pivot table with the dimensions group and subgroup.
    the group field is a concatenation of group number and the group name (Num_Group & '- '& Group) and the Subgroup field has the same logic
    ( (Num_Subgroup & '- '& Subgroup)).
    The problem is that I get a null concatenation in the filter panel.
    in my dimension I was putting this expression: if(isnull(Group_concat or Group_concat='-'), Group_concat), but it still doesn't remove the null concatenation from the filter...
    Can you help me, please.

     

    azucna122_0-1713263074424.png

     

    Show Less
  • forum

    App Development

    The sequence of events was not completed. Check engine or script logs.

    Hi ! I'm having a couple of issues with my Qlik setup and would greatly appreciate some guidance. Firstly, my scheduled tasks are failing, and the QMC... Show More

    Hi !

    I'm having a couple of issues with my Qlik setup and would greatly appreciate some guidance.

    Firstly, my scheduled tasks are failing, and the QMC is displaying the message: "The sequence of events was not completed. Check engine or script logs." In an attempt to resolve this, I've cleared out all logs within the archive logs folder, leaving only three months of history. Additionally, the disk space on the service cluster appears to be sufficient.

    Also, for my first daily task that trigger the rest I see that it executed successfully when I see the reload script log but the task status is failed so it doesn't trigger the other tasks.

    Secondly, when I try to duplicate apps from QMC, I receive the following error message: "Failed to load Properties. No data found."

    Does anyone experienced this before and know what is the cause for this?

    Show Less
  • forum

    App Development

    background color in trellis container

    Can a background color be set for cells in a trellis container using colormix2?  The charts are histograms and I would like to show deviation from the... Show More

    Can a background color be set for cells in a trellis container using colormix2?  The charts are histograms and I would like to show deviation from the mean as one of two colors, with white being close to or at the mean.

    If it can be done, I would assume it would be in the Master Visualization under Presentation, Styling / General / Background Color / By Expression, but not sure of the correct expression.  For regular tables it's something like:

    =colormix2(
    (rank(TOTAL column(1))/(NoOfColumns(TOTAL)/2))-1,
    rgb(20,20,20),
    rgb(100,100,100),
    rgb(200,200,200)
    )

    But this does not work for Trellis Containers.

    GregBrooks1_0-1713230409037.png

     

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