Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 250,577 members
  • 5,337 online
  • 2,032,975 posts
  • 153,048 Solutions

Welcome to Qlik Community

Recent Discussions

  • No Boards Found
  • forum

    Qlik Replicate

    Blocks when starting the Attunity task in MS SQL Server 2022

    Hello.We use data replication using Qlik Attunity, data is taken from SQL Server 2019, everything was fine. Then, after updating SQL Server to version... Show More

    Hello.
    We use data replication using Qlik Attunity, data is taken from SQL Server 2019, everything was fine. Then, after updating SQL Server to version 2022, difficulties began. Multiple errors and locks began when the task was started after stopping, the task was not deleted or updated, the task was simply suspended and started.

    The errors look like this

    Stream component 'st_0_BPMSQL_BPM' terminated
    Stream component failed at subtask 0, component st_0_BPMSQL_BPM 
    Error executing source loop
    Endpoint is disconnected
    Failure in starting (with TXN consistency...)
    Failure validating initial LSN 'anywhere existance'
    mssql_lsn_anywhere_validator(...)Failed in looking at Active TLOG
    lsn_exists(...)Failed in statement creation for looking at Active TLOG

    Failure in approving table full logging setup for dbo.AccountInsuranceProgram

    mssql_approve_table_full_logging_setup(...) failed in checking PK presence for table identified by ID '1882736243'

    Orlandis_0-1746797091387.png

     


    The blockages look like this and there are a lot of them (see screenshot)

    Orlandis_0-1746796791961.png

    Please help me solve the problem, thank you

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Visualization and Usability

    Need help to solve this duplicate row issue

    Hello Experts,I'm encountering an issue in QlikView involving a straight table. The problem arises from certain part numbers having multiple entries i... Show More

    Hello Experts,

    I'm encountering an issue in QlikView involving a straight table. The problem arises from certain part numbers having multiple entries in the cut_in_yr column, specifically two different years. This is causing unintended duplication of other values in the table.
    The duplication is particularly problematic when users export the data to Excel, as it's affecting the accuracy of totals. I'm seeking a solution to eliminate these duplicates and ensure the data integrity, especially for Excel exports.
    Can you suggest an effective approach to resolve this duplication issue while maintaining the correct representation of data?

    Capture.PNG

    In the above screenshot, the blue colored column Cut in Year is having two years, which is needed, but other non-coloured columns values are getting duplicated. How can i avoid this? 

     

     

     

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    App Development

    How to show the calculations in the simple Table

    Hi All,I really need help !I am pulling the data from the excel sheet but here i am creating the inline table as a sample data. my actual data is from... Show More

    Hi All,

    I really need help !

    I am pulling the data from the excel sheet but here i am creating the inline table as a sample data. my actual data is from 2019 till 2024. 

    Expected data of Jan 2023:

    Jan 2023 :  Cal 1a = 1

                     , Cal 1b = 1,

                       Cal 1c = 1,

                       Cal 1d = 0 ,

                      final cal sum of 1a- 1d = 3 ,

                       Cal 2 = 9 

     

    Requirements : 

    My requirement are consist of 2 calculations and the first 1 is consist of sum of 4 calculations by month. I have created the following set analysis of these calculations with static dates but dont know how to do dynamically in table.

    Calculation 1: for example Jan 2023:

                                              1-a: Count({$<[P Release Date]={"<=1/1/2023"}, [Del On Flag]={N},[PO LI RelDT                                                         Flag]={N}>}[P Release Date])

                                              1- b: Count({$<[P Release Date]={"<=12/31/2022"}, [Del On Flag]={N},[PO Release                                                      Date]={">=1/2/2023"}>}[P Release Date])

                                              1-c: Count({$<[P Release Date]={"<=1/1/2023"}, [Deleted On]={">=1/1/2023"},[PO LI                                                    RelDT Flag]={"N"}>}[P Release Date])

                                              1-d: Count({$<[P Release Date]={"<=1/1/2023"}, [Deleted On]={">=1/1/2023"},[PO                                                       Release Date]={">=1/1/2023"}>}[P Release Date])

    Calculation 2: for example Jan 2023:

    Count({$<[P Release Date]= {">=1/1/2023<=1/31/2023"}>}[P Release Date])

    ===========================================================================

    I have tried the following code in script for first calculation  but did not work as expected and dont know how to do second calculation:

    main:
    LOAD *
     
    ,if([PR Released 1/0] = 1 
        and(
            ("Del On Flag" = 0
                and 
                  ("PO LI RelDT Flag" = 'N' 
                    or
                     [PO Released 1/0] = 1 
                    )
                )
                or
                ([PR Deleted 1/0] = 1 
                and
                    ("PO LI RelDT Flag" = 'N'
     
                    or
                     [PO Released 1/0] = 1
                    )
                )
               )
    ,1,0) AS [Count PR as Open 1/0]
    ;
    LOAD *
    ,if([P Release Date]<=[MonthStart]
        and
            not isnull([P Release Date])
            ,1,0) AS [PR Released 1/0]
        ,if([Deleted On]>=[MonthStart]
        and
            not isnull([Deleted On])
    ,1,0) AS [PR Deleted 1/0]
        ,if([PO Release Date]>=[MonthStart]
        and
            not isnull([PO Release Date])
    ,1,0) AS [PO Released 1/0]
    ;
    Load 
        1 as rowCount,
        if(date(Date#("Deleted On", 'MM/DD/YYYY')) > 0 ,'Y','N') as "Del On Flag",
        if(date(Date#("PO Release Date",'MM/DD/YYYY')) > 0 ,'Y','N') as "PO LI RelDT Flag",
        Date(Date#([P Release Date], 'M/D/YYYY h:mm'), 'MM/DD/YYYY') as [P Release Date],
        Date(Date#([Deleted On], 'MM/DD/YYYY')) as [Deleted On],
        Date(Date#([PO Release Date], 'MM/DD/YYYY')) as [PO Release Date],
         monthstart((Date#([PO Release Date], 'MM/DD/YYYY'))) as [MonthStart];
     
    //Sample data

    load * inline [
    P Release Date, Deleted On, PO Release Date
    12/21/2022 0:00, -, 1/18/2023
    12/23/2022 0:00, 2/27/2023, -
    12/27/2022 0:00, -, -
    1/4/2023 0:00, 1/24/2023, -
    1/4/2023 0:00, -, 1/17/2023
    1/4/2023 0:00, -, 2/28/2023
    1/4/2023 0:00, -, 11/30/2023
    1/6/2023 0:00, -, 2/9/2023
    1/6/2023 0:00, -, 2/16/2024
    1/11/2023 0:00, 5/10/2023, -
    1/17/2023 0:00, 3/17/2023, -
    1/17/2023 0:00, -, 4/11/2023
    2/2/2023 0:00, -, 2/7/2023
    2/2/2023 0:00, -, 6/21/2023
    2/6/2023 0:00, 6/6/2023, -
    2/15/2023 0:00, 9/11/2023, -
    2/15/2023 0:00, -, 3/14/2024
    3/2/2023 0:00, -, 5/3/2023
    3/2/2023 0:00, -, 8/16/2023
    3/2/2023 0:00, -, 9/22/2023
    3/6/2023 0:00, -, 1/2/2024
    3/30/2023 0:00, 4/11/2023, -
    3/30/2023 0:00, 6/7/2023, -
    3/30/2023 0:00, 8/7/2023, -
    3/30/2023 0:00, -, 4/20/2023
    3/30/2023 0:00, -, 8/29/2023
    ];

     

    Thanks in advance,

    Sara.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik Replicate

    Move Deleted Records into another Table

    Hi,Using Qlik Attunity Replicate process is it possible to move records that are deleted from the source into a separate table in the target database ... Show More

    Hi,

    Using Qlik Attunity Replicate process is it possible to move records that are deleted from the source into a separate table in the target database or set a flag in the target table to indicate that the record was deleted from the source.

    Any suggestions will be highly appreciated.

    Kind Regards

    Ramdas

     

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik Education Discussions

    Clarification on QSBA Certification Exam 2024 – No Fee Paid

    Hi Community,I recently completed and passed the QSBA (Qlik Sense Business Analyst) certification exam. I was able to view my result and received a co... Show More

    Hi Community,

    I recently completed and passed the QSBA (Qlik Sense Business Analyst) certification exam. I was able to view my result and received a confirmation after passing. However, I did not pay any exam fee throughout the process.

    Could someone please confirm if this exam was part of a promotional offer or if it’s typically a paid exam? I’m a bit confused as most certification exams usually require a payment.

    Thanks in advance for your help!

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    App Development

    how to do the static dates into dynamic in set analysis or load editor

    Hi,The following are set analysis i have used in the KPI but i need to present the data in simple table:i have the actual data from 2019 - 2023 but th... Show More

    Hi,

    The following are set analysis i have used in the KPI but i need to present the data in simple table:

    i have the actual data from 2019 - 2023 but the following are the set analysis of Month Jan 2023:

    1- Count({$<[P Release Date]={"<=1/1/2023"}, [Del On Flag]={N},[PO LI RelDT Flag]={N}>}[P Release Date])

    2- Count({$<[P Release Date]={"<=12/31/2022"}, [Del On Flag]={N},[PO Release Date]={">=1/2/2023"}>}[P Release Date])

    3- Count({$<[P Release Date]={"<=1/1/2023"}, [Deleted On]={">=1/1/2023"},[PO LI RelDT Flag]={"N"}>}[P Release Date])

    4- Count({$<[P Release Date]={"<=1/1/2023"}, [Deleted On]={">=1/1/2023"},[PO Release Date]={">=1/1/2023"}>}[P Release Date])

    Main Data table:

    Load
    if(date(Date#("Deleted On", 'MM/DD/YYYY')) > 0 ,'Y','N') as "Del On Flag",
    if(date(Date#("PO Release Date",'MM/DD/YYYY')) > 0 ,'Y','N') as "PO LI RelDT Flag",

    Date(Date#([P Release Date], 'M/D/YYYY h:mm'), 'MM/DD/YYYY') as [P Release Date],
    Date(Date#([Deleted On], 'MM/DD/YYYY')) as [Deleted On],
    Date(Date#([PO Release Date], 'MM/DD/YYYY')) as [PO Release Date],
    monthstart((Date#([PO Release Date], 'MM/DD/YYYY'))) as [MonthStart]

    from excel sheet;

    Thanks,

    Sara.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Component Development

    How to display only 1 value in my column in my simple table report and show the ...

    Good afternoon, dear friends.I'm having a problem applying the sum(TAX_REMAINING) measure in a simple table report. It shows the same value three time... Show More

    Good afternoon, dear friends.

    I'm having a problem applying the sum(TAX_REMAINING) measure in a simple table report. It shows the same value three times, when it should only display one value and the other two values ​​are zero. This is a native error from the database.

    Here's an example of how my report is displayed:

    ejemplo tabla.png

    So, in the tax code field it shows 3 details and of those it should only show 1 value as shown in the following image:

    Ejemplo Tabla 2.png

    Therefore, the report already shows me that and I am applying the following measure:

    If(not IsNull(aggr(SUBTOTAL_LINEA, NUMERO_TRANSACCION)),SUM(SUBTOTAL_LINEA),0)

    But when I select another branch and the transaction number, in my subtotal field it shows me all 0, when it should show me the same different values ​​as they appear in the last column Subtotal MXN, so I don't know how to apply my measure.

    jctorres_1-1746813227817.png

    Please, I need to know how to apply the formula so I can visualize the data.

    I appreciate your support.

    I look forward to your comments.

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Visualization and Usability

    Calculate cumulative data in a table

        In the column "Total", I have a calculated measure, given by the following expression:   Count(DISTINCT {<origemEventoAtencao = {'1', '2', '3'},t... Show More

    rzaruvne_0-1746808676676.png

     

     

    In the column "Total", I have a calculated measure, given by the following expression:

     

    Count(DISTINCT {
    <
    origemEventoAtencao = {'1', '2', '3'},
    tipoInternacao = {'1','2','3','4','5'},
    regimeInternacao = {'1', '2'},
    guiaSolicitacaoInternacao = {"*"},
    dataRealizacao = {
    ">=$(=Date(AddMonths(Max(dataCalendario), -12)))<=$(=Date(Max(dataCalendario)))"
    }
    >
    } guiaSolicitacaoInternacao)

    +

    Count(DISTINCT {
    <
    diariasUTI = {">0"},
    guiaSolicitacaoInternacao = {"*"},
    dataRealizacao = {
    ">=$(=Date(AddMonths(Max(dataCalendario), -12)))<=$(=Date(Max(dataCalendario)))"
    }
    >
    } guiaSolicitacaoInternacao)

     

    In the column "Contribuição individual", the expression is a simple ratio, being the expression above divided by the sum of all values of "Total".  

     

    My problem is to calculate the cumulative percentage. From the example, the values of "Percentual acumulado" must be presented as shown in the figure below

    rzaruvne_1-1746809116632.png

    I have already tried using the above, range sum and row functions, however, none of them generated the cumulative sum, and it also messed up the order of the rows.

    If it helps, the rows are sorted like this:

    rzaruvne_2-1746809302121.png

     

     

     

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik Replicate

    Moving certain columns from source to target

    Hi, I'm new to Qlik replicate. I always wonder that can replicate move only certain or required columns alone to target table. I have gone through the... Show More

    Hi, I'm new to Qlik replicate. I always wonder that can replicate move only certain or required columns alone to target table. I have gone through the internet but found nothing. Can anyone please clarify me this?

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
  • forum

    Qlik Replicate

    Qlik Replicate Server Error ssl refresh configuration

    Hi,I Have the Qlik Replicate  Server in Linux and  I have an error in the log repsrv.logThe client used a ssl certificate own, and before days works f... Show More

    Hi,

    I Have the Qlik Replicate  Server in Linux and  I have an error in the log repsrv.log

    The client used a ssl certificate own, and before days works fine but now I have error

    "Agent failed to refresh ssl configuration".

     

    Thanks

    Show Less
    Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Weekly Leaderboard

Customer Story

Optimizing Food Relief with Qlik

Qlik empowers Foodbank Victoria with real-time data insights, optimizing food acquisition and distribution to deliver 25 million meals annually while reducing waste and costs across its statewide relief efforts.

Location and Language Groups

Choose a Group

Join one of our Location and Language groups. Find one that suits you today!

Collaborate

Blogs

Community News

Hear from your Community team as they tell you about updates to the Qlik Community Platform and more!