Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,595 members
  • 4,796 online
  • 1,997,011 posts
  • 149,709 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    New to Qlik Analytics

    Incorrect KPI calculation

    Hi, I have a problem in the data model and KPIs.The Facts table consists of several tables (concatenate), and there is a dimension table that contains... Show More

    Hi,

    I have a problem in the data model and KPIs.
    The Facts table consists of several tables (concatenate), and there is a dimension table that contains flags.
    I want to count the amount of values in a packet according to a certain flag and I don't get data.

    How can I solve this?

    Simple example

    Fact:

    SourceTable num(Date) StoreID OrderID ItemID Qty Amount GoalAmount Key
    Orders 44444 001 1001 a001 1 100 - 44444 | 001
    Orders 44444 001 1001 b002 1 150 - 44444 | 001
    Orders 44444 001 1002 a001 2 200 - 44444 | 001
    Orders 44444 002 2001 c003 5 50 - 44444 | 002
    Orders 44444 002 2002 a001 4 350 - 44444 | 002
    Orders 44444 001 1003 b002 2 300 - 44444 | 001
    Goals 44444 001 - - - - 700 44444 | 001
    Goals 44444 002 - - - - 800 44444 | 002


    Dim:

    Key flag1 flag2 flag3
    44444 | 001 1 1 0
    44444 | 002 0 1 1
    44444 | 003 1 1 1

     

    Sum({<flag1={1}>}Qty) = 6 --> I received 0.
    Sum(Qty) when filtered on flag1=1 --> I received 0.

    My final KPI should be like that:
    Avg(Aggr(Sum({<flag1={1}>}Qty),Date))

    Thanks!!

    Show Less
  • forum

    New to Qlik Analytics

    Extracting multiple items from filter to table

    Dears, I am making a table that contain many columns and user can select the columns they are interested in. I separated the columns in groups, so it ... Show More

    Dears,

    I am making a table that contain many columns and user can select the columns they are interested in.

    I separated the columns in groups, so it is easier to search for items.

    The problem happened when selecting multiple items in same filter.

    In pictures an example, when I select only one under Figures filter, I will get the column but if both selected, they will be hidden. 

    Abdull4h44_0-1714894339886.png

    And here after selecting both:

    Abdull4h44_1-1714894375870.png

     

    I am using this code for each Item in the table (Show column if):

    =If(SubStringCount('Gross Premium',GetFieldSelections(_FigureField))>0,1,0)

    =If(SubStringCount('Sum Insured',GetFieldSelections(_FigureField))>0,1,0)

     

    I Appreciate any suggestions you have and if you have other way or source I can learn from.

    Show Less
  • forum

    Qlik Reporting Service

    Qlik Sense SaaS - Exporting data to Excel

    Good day, The previous Qlik Community thread refers: Export total straight table to Excel - Page 3 - Qlik Community - 1620552 Our company currently us... Show More

    Good day,

    The previous Qlik Community thread refers: Export total straight table to Excel - Page 3 - Qlik Community - 1620552

    Our company currently uses on prem QlikView and Qlik Sense, but plan to migrate to Qlik Sense SaaS in December 2024.

    Currently QlikView allows one to dump a Straight Table and Pivot Table to Excel whilst retaining 1) totals and 2) column formatting (background and text colors, etc.). 

    On prem Qlik Sense also allows data exports from Tables and Pivots to Excel, but without retaining totals and column formatting. This is especially frustrating for troubleshooting purposes when this said data set could potentially contain "dislocated (erroneously unlinked) dimensions" which, as underlying rows, do not technically contribute to the measure totals.

    Will this oversight be fixed in Qlik Sense SaaS?

    This will address quite a crucial need in my industry.

    Please confirm.

    Thank you kindly.

    Show Less
  • forum

    Deployment & Management

    Qlik sense services not starting after upgrade to Feb 2023 tech review

    Hi We updated our Qlik Sense enterprise server to the Feb Tech Preview and our QSense services are not starting up.After running the update we got the... Show More

    Hi 

    We updated our Qlik Sense enterprise server to the Feb Tech Preview and our QSense services are not starting up.

    After running the update we got the following message:

    Justy1_1-1676472499517.png

     



    And when trying to start the repository service we get the below error:

    Justy1_0-1676472453458.png

    We attempted to change the registry setting in the server and also change the location of the postgres DB and this did not fix our issue

    Your assistance would be highly appreciated 

    Kind regards,

    Justin 

    Show Less
  • forum

    New to Qlik Analytics

    Set analysis to get value based on month selection

    I am trying to calculate the sum of the debits for the current month using the formula below. I'm not sure what I'm doing wrong here because I get onl... Show More

    I am trying to calculate the sum of the debits for the current month using the formula below. I'm not sure what I'm doing wrong here because I get only 0s with this formula.

    sum({$<GL_Month={"=$(=Date(Floor(MonthStart(Max(ActualsDate))),'MMM-YYYY'))"}>}Accounted_Debit)

    I want to calculate the value for the previous month as well.

    GL_Month is the month column that is derived in the script with the following formula :

    Date(MonthStart("ActualsDate"), 'MMM-YYYY') as GL_Month,

     

    Show Less
  • forum

    New to Qlik Analytics

    Rank Function and Partition by multiple dimension

    Hi There,I have n number of columns in the table and I would like to apply rank function on below variables based on latest survey date where i can fi... Show More

    Hi There,I have n number of columns in the table and I would like to apply rank function on below variables based on latest survey date where i can filter out rank = 1.

    Appreciate your advice.

    Something similar to SQL Query.

    rank() over (partition by COUNTRY, STATE order by survery_date desc)

    from table

    where rank = 1

     

     

     

    Show Less
  • forum

    New to Qlik Analytics

    Page load is slow with KPI's

    Dear All, We have a dashboard where all these calcs which you see are KPI's. The reason to use KPI is to see the up or down arrow with color to see pe... Show More

    Dear All,

    We have a dashboard where all these calcs which you see are KPI's. The reason to use KPI is to see the up or down arrow with color to see performance. But while we load the page, it is taking too much time. 

    Please suggest what is the best way to represent same data with optimized sheet loading. 

    kaushi2020_0-1714897270844.png

     

    thanks in advance.

    Show Less
  • forum

    New to Qlik Analytics

    Row level to Column level when string matches

    I have a QVD load that contains duplicate records because of an identifier. So, instead of having duplicate records, I want to create an identifier th... Show More

    I have a QVD load that contains duplicate records because of an identifier. So, instead of having duplicate records, I want to create an identifier that is Yes or No for a specific string. As an example below, you can see the Secondary Key column contains extra strings _ RE and _NA, and these are duplicate records, so I want to have the result as a second table with a column indicator as the RE Identifier.

    I appreciate your help on this.

    Actual Table

    Primary key Seondary key col3  col4 col5 col6 col7
    ABC123 B479238 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES
    ABC123 B479238_RE SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES
    ABC1234 B130636 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES
    ABC1234 B130636_RE SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES
    ABC12345 B280476 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES

     

    Expected table:

    Primary key Seondary key col3  col4 col5 col6 col7 RE Identifier
    ABC123 B479238 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES Yes
    ABC1234 B130636 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES Yes
    ABC12345 B280476 SOME VALUES SOME VALUES SOME VALUES SOME VALUES SOME VALUES No
    Show Less
  • forum

    New to Qlik Analytics

    Values are loading slowly

    Hi Everyone, I have multiple KPI objects in my sheet. when I am loading this app it takes sometime to load the numbers. is there any way we can improv... Show More

    Hi Everyone,

    I have multiple KPI objects in my sheet. when I am loading this app it takes sometime to load the numbers. is there any way we can improve the loading. (Currently the data is loaded from a QVD).

    kaushi2020_0-1710415962144.png

     

    thanks in advance.

    Show Less
  • forum

    New to Qlik Analytics

    Qlik Sense Data Architect & Qlik Sense System Administrator

    Hi all, Could you recommend me any articles or corses (now a qlikhelp), or sort of roadmap how to get these knowledge? just read and try everything on... Show More

    Hi all,

    Could you recommend me any articles or corses (now a qlikhelp), or sort of roadmap how to get these knowledge?

    just read and try everything on qmc?

    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!