Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 223,785 members
  • 2,567 online
  • 2,005,054 posts
  • 150,398 Solutions
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now

Welcome to Qlik Community

Recent Discussions

  • forum

    New to Qlik Analytics

    Help with qlik code to get 2 records if matching dates are same

    Hi everyone, i have using the following code to get which service was first given based on the date, but if 2 services are given on same date i am get... Show More

    Hi everyone, i have using the following code to get which service was first given based on the date,

    but if 2 services are given on same date i am getting null as output , i would like to have both those records if same service date 

     

    My code

    by_first_month:
    Load
    id as id,
    min(date(Service_dt)) as service_dt,
    FirstSortedValue (Service_Group, Service_dt) as Service_Group_test,
    FirstSortedValue (icode, Service_dt) as icode_test,
    FirstSortedValue (amount, Service_dt) as amount_test,
    resident [table]
    Where Service_Group='test1 'or Service_Group='test 2 'or Service_Group='test3'or Service_Group='test4'
    group by id;

     

    In the above code i am filtering the records from table , where service_group is in test1 ,test 2 ,test3,test4

    then i am finding the minimum of service date , and first sorted value based of other dimensions based on 

    My aim is to get only records where we have min service date 

    The problem is when 2 service_groups have same service date i am getting null, as output , 

    any help will be appreciated Thanks

     

     

    Show Less
  • forum

    New to Qlik Analytics

    QSDA 2022 exam and certification

    Hi all, I am interested to do my QSDA 2022 certificate, pls let me know how to start studying and any dumps also can be shared and pls share your expe... Show More

    Hi all,

    I am interested to do my QSDA 2022 certificate, pls let me know how to start studying and any dumps also can be shared and pls share your experience of preparing and successfully passed story. so it can be helpful for me to start.

    Show Less
  • forum

    Design and Development

    Moving files around on Azure Storage Container

    Hi I'm looking for some advice on the best components and approach to moving files around on an Azure Storage container.   The use case I'm looking to... Show More

    Hi

    I'm looking for some advice on the best components and approach to moving files around on an Azure Storage container.  

    The use case I'm looking to deliver on is

    1) Connect to Azure Storage Container

    2) Move a specified file or set of files from storage container A to container B and create a sub folder in the target container B to store the files if this doesn't exist.

    I assume someone in the community has performed this before, so I'd be keen to know how you've achieved it.

    Thanks

    Dave

    Show Less
  • forum

    App Development

    Interval Match and Calculate Workıng Tıme

    Hello, I have 2 tables. Here, I want to calculate the working time if the date range in Table2 is within the date range of Table1, please help.I tried... Show More

    Hello, I have 2 tables. Here, I want to calculate the working time if the date range in Table2 is within the date range of Table1, please help.I tried to write the code but unfortunately it didn't work.

    My code:


    OrderData:
    LOAD
    ORDERID,
    STATIONID,
    STARTDATE,
    ENDDATE
    INLINE [
    ORDERID, STATIONID, STARTDATE, ENDDATE
    UGR190643, 4932920, 2024-01-01 23:45, 2024-01-01 23:59
    UGR190643, 4932920, 2024-01-02 00:00, 2024-01-02 15:30
    UGR190645, 4932925, 2024-01-05 14:30, 2024-01-05 18:30
    ];

    StationData:
    LOAD
    STATIONID,
    STARTDATE AS STATION_STARTDATE,
    ENDDATE AS STATION_ENDDATE
    INLINE [
    STATIONID, STARTDATE, ENDDATE
    4932920, 2024-01-01 19:45, 2024-01-01 23:48
    4932920, 2024-01-02 00:00, 2024-01-02 02:30
    4932920, 2024-01-02 15:25, 2024-01-02 15:45
    4932925, 2024-01-04 18:45, 2024-01-04 23:59
    4932925, 2024-01-05 00:00, 2024-01-05 11:30
    4932925, 2024-01-05 11:30, 2024-01-05 14:30
    4932925, 2024-01-05 14:30, 2024-01-05 17:30
    ];

    IntervalMatch:
    IntervalMatch (STARTDATE, ENDDATE)
    LOAD
    STATION_STARTDATE,
    STATION_ENDDATE,
    STATIONID
    RESIDENT StationData;


    Left Join (OrderData)
    LOAD
    STATIONID,
    STATION_STARTDATE,
    STATION_ENDDATE
    RESIDENT StationData;

    FilteredData:
    LOAD
    ORDERID,
    STATIONID,
    STARTDATE,
    ENDDATE,
    STATION_STARTDATE,
    STATION_ENDDATE
    RESIDENT OrderData
    Where STARTDATE >= STATION_STARTDATE and ENDDATE <= STATION_ENDDATE;


    WorkingTime:
    LOAD
    ORDERID,
    DATE(STARTDATE) as Date,
    SUM(FLOOR((ENDDATE - STARTDATE) * 24 * 60)) AS WORKINGTIME
    RESIDENT FilteredData
    GROUP BY ORDERID, DATE(STARTDATE);


    DROP TABLE OrderData;
    DROP TABLE StationData;
    DROP TABLE IntervalMatch;
    DROP TABLE FilteredData;

    Table1:

    ORDERID STATIONID STARTDATE ENDDATE
    UGR190643 4932920 2024-01-01 23:45 2024-01-01 23:59
    UGR190643 4932920 2024-01-02 00:00 2024-01-02 15:30
    UGR190645 4932925 2024-01-05 14:30 2024-01-05 18:30

     

    Table2:

    STATIONID STARTDATE ENDDATE
    4932920 2024-01-01 19:45 2024-01-01 23:48
    4932920 2024-01-02 00:00 2024-01-02 02:30
    4932920 2024-01-02 15:25 2024-01-02 15:45
    4932925 2024-01-04 18:45 2024-01-04 23:59
    4932925 2024-01-05 00:00 2024-01-05 11:30
    4932925 2024-01-05 11:30 2024-01-05 14:30
    4932925 2024-01-05 14:30 2024-01-05 17:30

     

    ı want to result:

    DATE ORDERID WORKINGTIME
    2024-01-01  UGR190643 14
    2024-01-02  UGR190643 155
    2024-01-05  UGR190645 180

     

    Thank you.

    Show Less
  • forum

    Job Board

    We need Qlik consultants as freelance

    We need certified Qlik consultants as freelancers (this is not a regular job opportunity) If you are interested please kindly check www.experdeep.net ... Show More

    We need certified Qlik consultants as freelancers (this is not a regular job opportunity)

    If you are interested please kindly check www.experdeep.net or send us an email at agent@experdeep.net

    Thanks

    Show Less
  • forum

    Qlik Replicate

    QLIK REPLICATE, ANY GOOD?

    Hi guys, I am a DE/DA with 1 yoe , till now my job was to communicate with business users and other data analysts and write SQL queries to create Dail... Show More

    Hi guys, I am a DE/DA with 1 yoe , till now my job was to communicate with business users and other data analysts and write SQL queries to create Daily/Monthly data reports in for of SQL tables, I was hoping to learn python or some data Engineering tools in future but my company has asked me to do a certification in qlik replicate and I have never heard of any organisation using this tool , so I am scared that I might be wasting my time doin this and might get stuck in this stack, any help would be really appreciated

    Show Less
  • forum

    Qlik Replicate

    What technology is used under the hood of AWS DMS?

    Hey community! I have been using AWS DMS for quite a while, but now I'm interested to implement it on my own, because of the limitation it has. Does a... Show More

    Hey community!

    I have been using AWS DMS for quite a while, but now I'm interested to implement it on my own, because of the limitation it has.

    Does anyone know what is used under the hood?

    I mean, I understand there may be a custom solution written, but often AWS takes some open-source and wraps that.

    Show Less
  • forum

    New to Qlik Analytics

    Need help with the function len and left

    Hi All, Need help with below script, LOAD      text(left(RENTALSTOCKID,4)) as [Resource No],      RENTALSTOCKID     FROM[$(vFetchpath)RSTRENTALSTOCK.q... Show More

    Hi All,

    Need help with below script,

    LOAD
         text(left(RENTALSTOCKID,4)) as [Resource No],
         RENTALSTOCKID
       
    FROM
    [$(vFetchpath)RSTRENTALSTOCK.qvd]
    (qvd) Where len(RENTALSTOCKID)=6 and index(RENTALSTOCKID,'/')=5;

     

    Now our the field RENTALSTOCKID is 5 digits also. can someone suggest the change in the script please.

    I have attatched the screenshot of the application where the RENTALSTOCKID 30025 should not comes under 3002.

    Show Less
  • forum

    Design and Development

    Hash is not initialized

    Hi everyone, I know this might have been asked a lot, but none of the solutions seem to work. In my talend job I have the following The readmessage c... Show More

    Hi everyone, I know this might have been asked a lot, but none of the solutions seem to work.

    In my talend job I have the following

    rt97_0-1719644496623.png

    The readmessage component reads from the cachemessage component. however sometimes I get tHashInput_1 The hash is not initialized : The hash must exist before you read from it

    Do you have any idea how can I add an initialization check?

    Show Less
  • forum

    New to Qlik Analytics

    Qlik Pivot Table - Showing totals on top of dimensions

    I have requirement to create a pivot table in Qlik Sense with a dimension and couple of measures to be added as dimensions (synthetic dimensions) by a... Show More

    I have requirement to create a pivot table in Qlik Sense with a dimension and couple of measures to be added as dimensions (synthetic dimensions) by aggr with that dimension to show them freeze while scrolling the horizontally.

    The problem is, I also need to show totals row for the synthetic dimensions as well like in excel. Is there any solution for this?

    QlikEnthu1_0-1719631239336.png

     

    @Michael_Tarallo  @sunny_talwar 

     

    Show Less
Leaderboard

Customer Story

Accelerating Decision-Making with Qlik Insights

Qlik enhances decision-making with high-speed insights, as Mayborn Group integrates data from various functions across their global operations, gaining a competitive edge in the childcare industry.

Customer Story

Efficiency in Agriculture: Nortera's Qlik Triumph

Nortera leads agricultural manufacturing analytics and automation with Qlik, reducing short-shipment rates and annual savings in water consumption.

Customer Story

Revolutionizing aircraft production through Data Analytics

Qlik Data Integration transforms Airbus' aircraft production, leading to over 150 replication tasks and informing more efficient analysis.

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!