Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,757 members
  • 9,125 online
  • 1,995,706 posts
  • 149,567 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    App Development

    Filter Pane - Conditional options shown

    Is it possible to populate a filter pain based upon criteria from another field.   I have a table for document version, this contains [Version] and [A... Show More

    Is it possible to populate a filter pain based upon criteria from another field.

     

    I have a table for document version, this contains [Version] and [Active] - [Active] has only two values, 'Active' or 'Deleted'

    I want to show Version in my filter pane, but only if the Version is Active.

    Thanks

    Mark

    Show Less
  • forum

    App Development

    Coloring the Qliksense Stacked chart based on the Legend

    I need to use the color for stacked chart based on the legend dimension value. For example, if I show the sum value for month and Status in the stacke... Show More

    I need to use the color for stacked chart based on the legend dimension value.

    For example, if I show the sum value for month and Status in the stacked bar chart , the color of the bar should be based on the status value.

     

    I used the below expression in the Appearance >> Color and Legend >> Use custom colors

     

    =pick(Match(ErrorStatus,'Success','Service Unavailable','Bad Gateway'),'#009845','#004080','#F20000')

     

    but its not working properly. If I made the selections in the status then the bar is appearing with the corresponding color but if there is no selection then the bar itself is not showing.

     

    But if I scroll over the chart area the tooltip is appearing as normal.

    Show Less
  • forum

    Design and Development

    Talend Job not completing

    Hello I have a Talend job that calls an Oracle Db package using the tDBrow object.  It's a straight-forward Package that refreshes some Materialized V... Show More

    Hello

    I have a Talend job that calls an Oracle Db package using the tDBrow object. 

    It's a straight-forward Package that refreshes some Materialized Views on the Db. 

    It runs it every night with no issues, except at month-end when it refreshes the historical snapshots.

    The Package itself completes on the data-base , but the Talend job doesn't seem to register this and just keeps on running(until I manually terminate it). 

    I think it's a timing issue , on a normal run the Package takes a couple of minutes and the Talend job completes OK.

    At month end the Package takes approx. 1.5 hours(we have a lot of snapshots) and the Talend job keeps running. 

    The job is running from the TMC , but also keeps running if I manually run from Design Studio. 

    I was wondering if anyone has had a similar issue? 

     

    Show Less
  • forum

    New to Qlik Analytics

    how to set yesterday

    Hi all. I am trying to find how to set yesterday in a set analysis and it doesn´t work for me as I see from old posts: Date(Today()-1,'MM/DD/YYYY') or... Show More

    Hi all. I am trying to find how to set yesterday in a set analysis and it doesn´t work for me as I see from old posts:

    Date(Today()-1,'MM/DD/YYYY') or without the format.

    Also I need that to calculate the sum of the quantity that was sold yesterday. I tried this but it seems it gives me the accumulated sales till today:

    Sum(${<date(sold_date)={'==Date(Today() -1)'}>}quantity)

     

    Any help appreciated!!

    Show Less
  • forum

    New to Qlik Analytics

    flag with measure inside

    hi,   i have 2 tables  1 with budget and 1 with invoices now i want to do a flag in the dashboard that say if sum invoice > budget , 1 else 0 and show... Show More

    hi,

     

    i have 2 tables 

    1 with budget

    and 1 with invoices

    now i want to do a flag in the dashboard that say if sum invoice > budget , 1 else 0

    and show only the drivers and spent more then their budget

     

    i tried to do master item with dimension but its not giving me 1 OR 0 

    if i do it in measure its give me 1 OR 0 

    but then i cant filter it in the table i show in dashboard

     

     

    please help me if you know a solution or have any other idea

    🙂

     

    Show Less
  • forum
  • forum

    GeoAnalytics

    Error: GeoAnalytics Invalid URL when importing GeoJSON with geoAnalytics+

    Dear all, i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within... Show More

    Dear all,

    i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within QlikView 12 Developer & ajax client.

    Now I would like to use a local file within GeoAnalytics.

    I tried to use the GeoAnalytics Connector with GeoAnalytics+ option and following settings:

    senior_v_0-1713967994990.png

    The error indicates, that the path is somehow wrong.

    file:///P:\Qlik\GeoAnalytics\CustomMaps\bezirke_999_geo.json

    Any idea what i'm doing wrong?

     

    Thanks in advance

    Show Less
  • forum

    New to Qlik Analytics

    A join that doesn't surprisingly work

    Hello everyone, I would like to discuss this case and I'm sure someone can explain to me why this happens. In my following script, table1 is a fact ta... Show More
    Hello everyone, I would like to discuss this case and I'm sure someone can explain to me why this happens.
    In my following script, table1 is a fact table of data about Activities that actually have happened and table 2 is a  fact able about all activities, including the ones in table1 and more that are announced but haven't happened yet so they cannot be in table1 yet. Dim_team is a dimension table with team details. The cardinality is many to 1 such as an Event_id can only belong to an ID_Activity, but an ID_Activity and can have many Event_ids.  So the question now is: I tried to right join the tables with a composite key "Activity_Key" (because in fact ID_Activity and ID_for_Activity are the same and so are ID_Team and ID_of_Team) so that I can have all data for Activities even when they have nulls in table1.
    The result I'm getting is not what I expected, it gets partial information, doesn't match info as it should.
    A link table saved the day, but I was -and still am- very confused about that.
     
     
     
     
    dim_team:
     
    LOAD ID_Team,
          Team_Name
          Team_Code
    FROM [$(vPathQVD)team.qvd]
    (qvd);
     
     
     
    fact_table1:   
    //
    LOAD
        "Event_id",
        "ID_Person",
        "ID_Team",
        "ID_Activity",
        "ID_Team"&"ID_Activity" as Activity_Key
     
    FROM [$(vPathQVD)table1.qvd]
    (qvd);
     
     
    right join(fact_table1)
    //fact_table2
    LOAD
     
        "ID_for_Activity",
        "ID_of_Team",
        "ID_of_Team"&"ID_for_Activity" as Activity_Key,
        "Activity_Name",
        "Participants_Number",
         Date,
         Place
     
        
    FROM [$(vPathQVD)Activity.qvd]
    (qvd);
     
     
    I could use some help! Thank you 🙂
    Show Less
  • forum

    Francophones

    Définition de la largeur de colonne

    J'ai un soucis visuel sur un TCD Qlik Sense (May 2023)  Les colonnes sont par défaut à la même largeur, le problème c'est qu'une de mes colonnes compo... Show More

    J'ai un soucis visuel sur un TCD Qlik Sense (May 2023) 

    Les colonnes sont par défaut à la même largeur, le problème c'est qu'une de mes colonnes comporte un grand nombre de valeurs (qui sont des clés concaténées).
    Ces valeurs remontent d'un set analysis et du coup comme elle ne sont pas au format nombre, cela fait élargir ma colonne et rend le tableau difficilement lisible.

    Je souhaiterai définir manuellement une largeur fixe de colonne mais lorsque que je clique sur 
    Données
    Contenue de ma mesure
    Je n'ai pas d'accès à largeur de colonne

    Auriez-vous une astuce ?

    CodingNini_0-1713793735937.png

     

    Show Less
  • forum

    Design and Development

    Go through several outputs for each record

    Hi everyone, I am facing an issue as I am trying to build a flat file to import data in a software (standard format defined by the software editor). F... Show More

    Hi everyone,

    I am facing an issue as I am trying to build a flat file to import data in a software (standard format defined by the software editor). For each of my records, I have to go thourgh several outputs I created and this order must be respected. At the moment, my job goes through the first output for all the records and then switches to the next output.

    In my case, I would like it to go through each output, one by one, with one record before it switches to the next record.

    How can I do this ? Please find attached a screenshot of my job.

    Thanks.

     

    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!