Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,949 members
  • 4,869 online
  • 1,995,897 posts
  • 149,585 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    Qlik Application Automation

    How can I schedule to send dashboard everyday after refresh?

    Hi Experts,     Can  anyone guide me how can I schedule to sends reports everyday after it get refreshed to certain email id's using Qlik Sense Automa... Show More

    Hi Experts,

     

     

    Can  anyone guide me how can I schedule to sends reports everyday after it get refreshed to certain email id's using Qlik Sense Automation ?

     

    I know subscription option to Send reports on  Daily, Weekly , Monthly , But i need to send Updated reports after Refresh is done.

    Is there any other workaround apart from QLik NPrinting ?

    Show Less
  • forum

    QlikView App Dev

    Loop in a script

    Hi all, i would need your help on this topic: I am getting following Data under Qlikview: I would like to assign the field-information from "AREA-EAN... Show More

    Hi all,

    i would need your help on this topic:

    I am getting following Data under Qlikview:

    JR_38_0-1714144495534.png

    I would like to assign the field-information from "AREA-EAN" when the Datatyp='AREA'  as own column for the following eans, and then remove the line related to the datatyp "AREA" .

    It should look like this:

    JR_38_1-1714145212860.png

    I set different variables in order to use it in my first loop but the for...next doens´t work.

    INV_RAWDATA:
     
    LOAD * INLINE [
    ID, Datatyp, AREA_EAN, Qty
    1, AREA, A-30-D-00, 1
    2, EANS, 4062171924956, 2
    3, EANS, 4062171874947, 2
    4, EANS, 4062171912946, 1
    5, EANS, 4062171924956, 1
    6, EANS, 4062171924956, 1
    7, AREA, A-29-D-00, 1
    8, EANS, 4062171874930, 1
    9, EANS, 4062171912946, 1
    10, EANS, 4066952504313, 1
    11, EANS, 4066952504320, 1
    12, EANS, 4066952504320, 1
    13, EANS, 4066952504320, 1
    ];
     
    Store INV_RAWDATA into File.qvd;
     
    // set Variable with information
    VARIABLE_I:
     
    set i=1;
     
    LOAD ID, 
         AREA_EAN, 
         Datatyp, 
         Qty
    FROM File.qvd (qvd) where ID=$(i) and Datatyp='AREA';
     
    let i=$(i)+1;
    let AREA=peek('AREA_EAN',0,'VARIABLE_I');
     
    VARIABLE_II:
    LOAD 
    max(ID) as max_i    
    FROM
    File.qvd (qvd);
    let max_i=peek('max_i',0,'VARIABLE_II');
     
     
    // 
     
    FOR i=$(i) to max_i=$(max_i)
     
    RUN:
     
    LOAD 
    '$(AREA)' as AREA,
    ID, 
         AREA_EAN, 
         Datatyp, 
         Qry
    FROM
    File.qvd (qvd) ; 
     
    NEXT

     

    Has somebody any idea how I could get the desired result?

    Show Less
  • forum

    QlikView Administration

    Decrypt Date

    Hello Community,Recently I discovered that I can make que QlikViewServer Service make a CalData.pgo.xml, so i wanted to do an app to see the document ... Show More

    Hello Community,

    Recently I discovered that I can make que QlikViewServer Service make a CalData.pgo.xml, so i wanted to do an app to see the document cals assigned and last used, but the Last used date comes encrypte like this:

    Community.png

     

    I want to know if is there any way to decrypt those dates so I can do some kpis with them.

    Thank you.

    Show Less
  • forum

    App Development

    Help with Formula (Distinct) QlikSense is Hiding Data

    Hello,  I am panicking. Changed data model and impacting my tables now. Now I have multiple rows of data with the same ProgramName with multiple Event... Show More

    Hello, 

    I am panicking.

    Changed data model and impacting my tables now. Now I have multiple rows of data with the same ProgramName with multiple Events and QlikSense is hiding data in the table. Just Added RecordID

    I want to see NA and ProgramName A, Events 1 and 2.
    Qliksense is Program A, but the Event Field is blank, but there is data there. 
    Assume somehow I have to include Distinct events. Any recommendations?

    Currently using:
    IF(Region = 'NA' and ProgramName = 'A', [ProgramName],Null())

    RecordID Region ProgramName Event
    1 NA A 1
    2 NA A 2
    3 NA B 1
    4 EU C 1
    Show Less
  • forum

    New to Qlik Analytics

    Incremental load

    I have 1 year of data.data gets added every week. I want to use incremental load so that I don’t have to load the whole data again and agian. I have d... Show More

    I have 1 year of data.data gets added every week. I want to use incremental load so that I don’t have to load the whole data again and agian. I have date field and also counter filed to identify new data . How do I do that. Please help

    Show Less
  • forum

    App Development

    Multiple date values does not work with match function i the script editor

    Hello, when using muiple date values in where clause along with match funtion, qlik does not return anything? Please advice, how can we use mutiple da... Show More

    Hello,

    when using muiple date values in where clause along with match funtion, qlik does not return anything? Please advice, how can we use mutiple date values in where clause of the load editor?

     Load *

     

    where match (My_DateField ,'2023-08-02','2023-09-13','2023-10-02','2023-10-30','2023-11-01','2023-11-02','2023-12-01','2023-12-05','2023-12-11','2023-12-12','2024-01-02','2024-01-11','2024-01-31',
    '2024-02-01','2024-02-05','2024-02-08','2024-03-01','2024-04-01','2024-04-03','2024-04-10','2024-04-15','2024-04-18','2024-04-19');

    Show Less
  • forum

    New to Qlik Analytics

    Fields too small to see loading data

    Hello i'm brand new to Qlik Sense, whey trying to load data the previews are too small to use, how do i change the size? 
  • forum

    App Development

    how to save qvd generated in the cloud to local machine

    Como salvar QVD gerado na nuvem para a máquina local
  • forum

    App Development

    What makes a variable expression valid?

    I am not sure what defines a valid expression for variables in the data load editor: For example:  INCORRECT:  Let vLastExecDate = max(date); CORRECT:... Show More

    I am not sure what defines a valid expression for variables in the data load editor:

    For example: 

    INCORRECT:  Let vLastExecDate = max(date);

    CORRECT: Let vLastExecDate = peek('date', 0, 'table_name'));

    OR

    INCORRECT: LET vIsS3TablePresent = NoOfRows('check_s3')>0;

    INCORRECT: LET vIsS3TablePresent = if(NoOfRows('check_s3')>0, 1, 0);

    What am I missing? This is an issue I face every month and I haven't pinned down what makes an expression valid for LET variable creation method.

    Show Less
  • forum

    New to Qlik Analytics

    QlikSense Hub "An error occured - The app you specified could not be found"

    Hi AllI've just deployed QlikSense server and I have been working on an App. I came back after lunch and I'm getting this message. I only have two tes... Show More

    Hi All

    I've just deployed QlikSense server and I have been working on an App. I came back after lunch and I'm getting this message. I only have two test apps, and I am getting the message on both. I am able to create and work on a new app as usual. I've tried some of the solutions on other forum threads, namely restarting the Virtual Machine and restarting all QlikSense Services. However, the issue persists.

    Does anyone have a solution for this?

    Thanks,

    Will

    Qliksense error.PNG

    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!