Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 218,433 members
  • 6,291 online
  • 1,996,731 posts
  • 149,682 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    New to Qlik Analytics

    Show only specified values in filter pane

    Hi, I have year field as filter in which I have 2023 2024 2025 2026 2027 2028 values. I want to show only 2024 and 2025 in filter 
  • forum

    Qlik NPrinting

    Sending report automatically to multiple users filter by Excel

    Hi Team, Could you please give some idea how to achieve multiple to address in for one email based on filter option in excel. I have followed below st... Show More

    Hi Team,

    Could you please give some idea how to achieve multiple to address in for one email based on filter option in excel. I have followed below steps but not able to achieve

     

    Singaravelu_R_0-1714583636546.png

     

    Singaravelu_R_1-1714583663752.png

    Receiving below warning in N printing side

    Singaravelu_R_2-1714583694742.png

     

    Not find any selected items

     

    Singaravelu_R_3-1714583881876.png

     

     

    Show Less
  • forum

    New to Qlik Analytics

    Labels to set of columns in Pivot Table

    I am creating a Pivot table under which I have eight measures, I need to create one custom label for for 3 measures another label for 2 measures and o... Show More

    I am creating a Pivot table under which I have eight measures, I need to create one custom label for for 3 measures another label for 2 measures and one more label for last 3measures. Is it possible ?

     

    something like this 

    qlikrambo1_0-1714624357605.png

     

            

          

    Show Less
  • forum

    Design and Development

    Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\)

    Hi Community,  we get the error Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\) when we click "Guess schema". We don't change the que... Show More

    Hi Community, 

     

    we get the error Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\) when we click "Guess schema". 

    We don't change the query and we get it in every job.

    We are use a Microsoft SQL Server and Microsoft Server 2016 Datacenter. 

    I tried to reproduce the error. I don't get the error. 

     

    Talend Version: 6.3.1.20161216_1026 

     

     

    I hope you have any ideas how we can fix that.

     

    Thanks & Regards

    Selina

    Show Less
  • forum

    Qlik Replicate

    Flattening The String

    When we load data through Qlik replicate, In Source we have a fields containing multiple values, Seperated by ; For Example, Field Name in source:  Ta... Show More

    When we load data through Qlik replicate, In Source we have a fields containing multiple values, Seperated by ;

    For Example,

    Field Name in source:  Tax

    Value : 10;12;4

    in target we want it to be flattened,

    Tax1 field should have the value 10

    Tax2 field should have the value 12

    Tax3 field should have the value 4

     

    We have written a expression and its working, is there any other simple maner if we can solve this issue, giving the logic we are using currently.

     

    Tax1 :

     substr($TAX,1,instr($TAX, ";")-1)

    Tax 2:
    substr(substr($TAX,instr($TAX, ";")+1,length($TAX)),1,
    instr(substr($TAX,instr($TAX, ";")+1,length($TAX)), ";")-1)

    Tax 3:
    substr(substr($TAX,instr($TAX, ";")+1,length($TAX)),
    instr(substr($TAX,instr($TAX, ";")+1,length($TAX)), ";")+1,length($TAX))

    Show Less
  • forum

    New to Qlik Analytics

    Two Fields, contained in a Text & Image chart, disappear when the associated She...

    The two, subject numeric fields figure into a finance report which also contains static text and many more numeric fields. The latter set of numeric f... Show More

    The two, subject numeric fields figure into a finance report which also contains static text and many more numeric fields. The latter set of numeric fields are dynamic and their values change automatically as data in the App changes; and these field values appear just fine after the sheet is made Public to a User who has Private Analytics Content Creator, Shared Space Creator and Steward rights

    The two, subject fields differ from the many additional numeric fields in that they are populated with measures using two separate input variable controls. Once these variable inputs are manually input, their values appear just fine in the Text & Image chart. However, they disappear when the sheet is made Public to the same User.

    Can anyone explain the problem and how to fix it?

    Thanks in advance!
    Oliver

     

    Show Less
  • forum

    New to Qlik Analytics

    display a selection of a field in a table

    Hi all,   I have a dashboard with a filter of the field event_name and I selected all the events with the words amnesia 2024 in it. But I need to crea... Show More

    Hi all,

     

    I have a dashboard with a filter of the field event_name and I selected all the events with the words amnesia 2024 in it. But I need to create a table to display all the events with the words amnesia 2023 in it. How could I do it?

    Just in case it helps, I have 2 fields called event_code and a previous_event_code so the events of 2024 and 2023 are related that way.

    I tried this but didn't work: 

    ={<year_event=, month_event=, event_code=p(previous_event_code), event_to_compare=, event_name= >} event_name

     

    Many thanks!!

    Show Less
  • forum

    App Development

    Crosstable Challenge. SalesMan Comissions by Product Group

    Hi guys, I have an input table with the % of comission for each Product Type Sale for each SalesMan.  The table looks like this (in the real case the ... Show More

    Hi guys, I have an input table with the % of comission for each Product Type Sale for each SalesMan. 

    The table looks like this (in the real case the SalesManID is dynamic, it's not only for 4 salesman) :

            4 5 12 14
    CompanyCode FamilyCode SubFamilyCode FamilyDescription SalesmanId4 SalesManId5 SalesManId12 SalesManId14
    1 ANIM ********** XXX 10% 5% 10% 10%
    1 APPR ********** YYY 5% 10% 5% 10%
    1 AV ********** ZZZ 10% 10% 10% 5%

     

    And I'd like to get an output of a desired table like this :

    FamilyCode SalesManId %Comission
    ANIM 4 10%
    ANIM 5 5%
    ANIM 12 10%
    ANIM 14 10%
    APPR 4 5%
    APPR 5 10%
    APPR 12 5%
    APPR 14 10%
    AV 4 10%
    AV 5 10%
    AV 12 10%
    AV 14 5%

     

    Could anybody help me please? I don't know if crosstable it's the best option, I'm trying to do it but with no results.

    PD : I've attached the example in excel, in order to make it easier for everyone to understand.

    Kind regards, Marcel.

    Show Less
  • forum

    New to Qlik Analytics

    One chart over another

    Hello All, I want to create same like below in Qlik senseData Detailed report is Heading and 4 links at right are hyperlinks, instead of hyperlink I c... Show More

    Hello All, I want to create same like below in Qlik sense
    Data Detailed report is Heading and 4 links at right are hyperlinks, instead of hyperlink I created button
    I want show exactly like in picture

    Bharathi09_0-1714478645251.png

    Plese help
    Thanks!

    Show Less
  • forum

    Qlik Replicate

    Full load warning message

    Subsequent to executing a full load task, the following warning message appears in our Qlik Replicate log:00270041: 2024-04-30T16:56:43 [ASSERTION ]W:... Show More
    Subsequent to executing a full load task, the following warning message appears in our Qlik Replicate log:

    00270041: 2024-04-30T16:56:43 [ASSERTION ]W: 'LOAD_DATA (33)' event of table 'SIEBEL'.'S_ORG_EXT' with id '2' does not contain all key values, stream position '(null)' (streamcomponent.c:2989)
    00270041: 2024-04-30T16:56:43 [ASSERTION ]W: Please use the ASSERTION logger in the verbose mode to log all possible problematic events of all captured tables (streamcomponent.c:2990)

    Find attached the verbose log file
    What could be the issue?
    Thank you very much.
    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!