Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 265,652 members
  • 18,218 online
  • 2,046,993 posts
  • 154,347 Solutions
Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register

Welcome to Qlik Community

Recent Discussions

  • forum

    App Development

    Can't keep app's OAuth consent method "Trusted" -- keeps going back to "required...

    I am creating a OAuth client in the management console per these instructions: https://qlik.dev/authenticate/oauth/create/create-oauth-client/.  Howev... Show More

    I am creating a OAuth client in the management console per these instructions: https://qlik.dev/authenticate/oauth/create/create-oauth-client/

    However when I change the consent method and publish the client, the consent method flips back to "required" from "trusted". Any idea why? 

    Show Less
  • forum

    Qlik Automate

    How to Automate Personalized Excel Reports from an App with Section Access?

    I’m trying to build an automation in Qlik that sends an Excel file generated from a tabular report in an app that uses Section Access. The goal is for... Show More

    I’m trying to build an automation in Qlik that sends an Excel file generated from a tabular report in an app that uses Section Access. The goal is for each user (around 100) defined in Section Access to receive an email with their individual data only (based on their access level).


    I know that in-app reporting can handle personalized reports, and I’ve looked into using the Create Report, Add Sheet to Report, and Generate Report blocks in Qlik Application Automation. However, the Generate Report block only supports PDF and PPT, and I specifically need Excel output.


    Additionally, I need to include CC recipients in the email for each user.


    My questions:

    Can the automation loop through Section Access users and apply their data reduction to the attach file?
    How can I dynamically add CC recipients for each email?

    Any guidance or best practices would be greatly appreciated!

    Show Less
  • forum

    App Development

    Inconsistent results with ConvertToLocalTime()

    Hi all, I'm having issues surrounding ConvertToLocalTime and the UK's DST change.For clarity, the change happened on 26th October 2025.Our setup is Ql... Show More

    Hi all, 

    I'm having issues surrounding ConvertToLocalTime and the UK's DST change.

    For clarity, the change happened on 26th October 2025.

    Our setup is QlikSense (Cloud) to Dynamics365 Business Central via Odata v4. I am trying to build some of these queries as incremental loads (Dump, save to disk & on the next run, pull anything >= last CreatedAt time)

    I'm running this code, which isn't overly complex, to build an Exclusion List.

    LIB CONNECT TO 'BC Testing - Odata:BC Odata Connection';
    
    RestConnectorMasterTable:
    SQL SELECT 
    	"__KEY_root",
    	(SELECT 
    		"Document_No",
            "SystemCreatedAt",
            "__FK_value"
    	FROM "value" FK "__FK_value")
    FROM JSON (wrap on) "root" PK "__KEY_root"
    WITH CONNECTION(
    	URL "$(vBaseURL)/$(vTable)?$filter=ManualDeleteReason eq 'Incorrect Order'", 
    	HTTPHEADER "Authorization" "Bearer $(vAccessToken)");
    
    _ExclusionList:
    LOAD	
    	distinct [Document_No]				as ExcludedOrders,
        SystemCreatedAt			as SysCreatedOrig,
        date(Timestamp(
        ConvertToLocalTime(
            Timestamp#([SystemCreatedAt], 'YYYY-MM-DDTHH:mm:ss.fffZ'),
            'Europe/London')),'DD/MM/YYYY hh:mm') as SystemCreatedAt
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_value])
    order by SystemCreatedAt asc
    ;

     

    and anything pre DST is converted, anything post, isn't.

     

    Oggy172_0-1764926575607.png

    I tried using ALT, but that made no difference.

    LIB CONNECT TO 'BC Testing - Odata:BC Odata Connection';
    
    RestConnectorMasterTable:
    SQL SELECT 
    	"__KEY_root",
    	(SELECT 
    		"Document_No",
            "SystemCreatedAt",
            "__FK_value"
    	FROM "value" FK "__FK_value")
    FROM JSON (wrap on) "root" PK "__KEY_root"
    WITH CONNECTION(
    	URL "$(vBaseURL)/$(vTable)?$filter=ManualDeleteReason eq 'Incorrect Order'", 
    	HTTPHEADER "Authorization" "Bearer $(vAccessToken)");
    
    _ExclusionList:
    LOAD
        distinct [Document_No]                                as ExcludedOrders,
        SystemCreatedAt                                       as SysCreatedOrig,
    Date(
        ConvertToLocalTime(
            Alt(
                Timestamp#([SystemCreatedAt], 'YYYY-MM-DDThh:mm:ss[.fff]Z'),
                Timestamp#([SystemCreatedAt], 'YYYY-MM-DDThh:mm:ss[.fff]+00:00')
            ),
            'Europe/London'
        ),
        'DD/MM/YYYY hh:mm'
    ) as SystemCreatedAt
    RESIDENT RestConnectorMasterTable
    WHERE NOT IsNull([__FK_value])
    ORDER BY SystemCreatedAt asc;
    
    drop table RestConnectorMasterTable;
    
    exit script;

     

    If I use the same functions on a live table, not an archive (and so only records in the table are post DST) - the function works correctly.

    Can anyone shed some insight? I cant afford to dump the whole archive over the API each time.

     

    Show Less
  • forum

    App Development

    hide / disable filtering in a pivot table

    Hellogot a pivot table like below:is there a way to disable filtering on scenario from the pivot table itself?kindly advise
  • forum

    App Development

    Help with weird Qliksense behaviour

    Im experiencing a weird situation in qliksense where,When I select a condition in my table, =YearEnd>=NetDueDate  Qliksense always returns both positi... Show More

    Im experiencing a weird situation in qliksense where,
    When I select a condition in my table,

    =YearEnd>=NetDueDate

     Qliksense always returns both positive and negative cases.(Video attached.)
    The data is not getting filtered.

    To give you a background,
    I'm using an As-Of table(Report_Calendar) to calculate rolling sum of Amounts.
    To calculate overdues, I'm comparing 
    1. YearEnd field from As-of table with NetDueDate in my fact(AccountsReceivable).
    2. Clearing Date from my fact to YearEnd field in As-of table.

    These conditions when used in set analysis were not returning expected results.
    So I tried running the conditions individually and noticed this weird behaviour.

    My data model looks like below,

    qlikdatamodel.png

     Any help would be appreciated.

    TIA,




    Show Less
  • forum

    Qlik Replicate

    Qlik replicate s3 target size change processing file

    Hi,I have lika target a aws s3 bucket.I want to limit the maz size of the files to write in the target to 3 mb. But I dont know where  do this configu... Show More

    Hi,

    I have lika target a aws s3 bucket.

    I want to limit the maz size of the files to write in the target to 3 mb. But I dont know where  do this configuration.

    Which of these options is suitable and what are their differences?

    -In manage endpoint connection -> File attributes -> Maximum file size (KB)

    -In manage endpoint connection -> Change processing -> Apply/store changes when: File size reaches(KB)

    -Task Settings -> Change Processing Tunning -> Transaction Offload Tuning -> Offload transactions in progress to disk if -> Total transactions memory size exceeds (MB)

     

    thanks,

    Show Less
  • forum

    Data Movement & Streaming

    "Access Denied. Error code: 5" when reordering sheets

    Hello, I am having an issue right now where when I try to reorder the public sheets within my app, I am getting the following:   The app was original... Show More

    Hello, I am having an issue right now where when I try to reorder the public sheets within my app, I am getting the following:

    bmorgan_0-1730840054436.png

     

    The app was originally created by a former employee. I have tried multiple things including making myself the app owner, duplicating the app to ensure it is mine, and some other things I've forgotten at this point. I am also the owner of the space that the app resides in.

    Any help would be greatly appreciated. Thanks!

    Show Less
  • forum

    Talend Cloud

    Regarding Talend import items in Docker image

    We are in the process of migrating Talend Studio projects from version 7.3 to 8. The 7.3 jobs were deployed as Docker images in ECR. For some jobs, th... Show More

    We are in the process of migrating Talend Studio projects from version 7.3 to 8.

    The 7.3 jobs were deployed as Docker images in ECR. For some jobs, there are multiple versions in Git, and we are unable to identify which version was actually deployed.

    We have pulled the Docker images as .tar files and attempted to import them into Talend Studio 8, but we encounter the following error:

    “No valid items to import.”

    From our investigation, it appears that these .tar files are Docker images containing compiled job runtimes, not Talend job export files.

    Could you please advise on the best approach to extract or obtain the correct Talend job items from these Docker images so that they can be imported into our Talend Studio 8 for review and migration?


    Show Less
  • forum
  • forum

    App Development

    Qlik Sense: How do we prepare script using the Store statement to save data with...

    The documentation is not very clear on this specific request.Creating QVS filesCreate QVS files in a text editor outside of Qlik Cloud. Load script hi... Show More

    The documentation is not very clear on this specific request.

    Creating QVS files

    Create QVS files in a text editor outside of Qlik Cloud. Load script history can also be downloaded as QVS files.

    Do the following:

    1. Create a block of load script in an app or script.

      Creating your load script in an app or script allows you to test the script first before adding it to a QVS file.

      Alternatively, find a block of load script you want to reuse.

    2. In a text editor, copy and paste the block of load script you want to reuse.

    3. Save the load script as a file with the QVS extension.

    You can now upload the QVS file to Qlik Cloud or a web storage provider.

    Example:

    The App will consume the data daily needed in the proper script format then store it to a data connection.

    For Example: 

     Comment Field [Field1]   With "Dimension | A note that describes field contents ";

    Store QVS_1 into [lib://QVS_Files/Automation/Generate_Data.qvs]) (txt,delimiter is ';');

    Then all Apps that need to load this script daily via:  Must_Include statement. 

    What am I missing here?

    Show Less

FREE TRIAL

Data has stories to tell—let Qlik help you hear them. Start your FREE TRIAL today!

Leaderboard

Qlik community MVPs

Qlik Community MVPs — trusted experts driving collaboration, learning, and innovation.

mvp-banner-side-image

Customer Story

Afcons Boosts Efficiency with Qlik

Afcons Infrastructure partnered with Qlik to unify its data and build dynamic dashboards, reducing review times from weeks to hours and enabling on-demand reporting across its global operations.

Customer Story

Enhancing Customer Experience Through Smarter Insights

By implementing Qlik Analytics, Atria Convergence Technologies improves insight into churn, revenue, and downtime, driving faster decisions and more proactive customer support.

Customer Story

Breaking Down the Data Bottlenecks

Hydronorth uses Qlik to replace disconnected data systems with a single source of truth, improving alignment, speeding up decisions, and reducing manual work.

Customer Story

French Ministry of Armed Forces Develops a Data-Centric Culture

With Qlik Cloud Analytics, Rexel boosts performance by enabling self-service analysis, reducing prep time, and giving 3,000 users access to trusted insights.

Your Place, Your People

Choose a Group

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

Collaborate

Qlik en México

Qlik en México

Únete a la conversación con usuarios de Qlik en todo México: comparte ideas, haz preguntas y conéctate en español.

All are welcome

Hello from Japan

Japan

Qlik Communityの日本語のグループです。 Qlik製品に関する日本語資料のダウンロードや質問を日本語で投稿することができます。

Request to join

Parlons Données

Parlons Données

Connectez-vous avec des utilisateurs francophones de Qlik pour collaborer, poser des questions et partager des idées.

open to all

Did you know...

Catch the Latest from Qlik

The Qlik Product Recap showcases the newest features with quick demos and shareable resources to help you stay current?

Did you know...

Qlik Free Trials

You can test-drive Qlik for free? Try Qlik Talend Cloud to integrate and clean data without code, or explore Qlik Cloud Analytics to create AI-powered visualizations and uncover insights hands-on.

Did you know...

Turn change into opportunity

Salesforce’s acquisition of Informatica could put your flexibility on hold? Qlik makes it easy to keep your data initiatives moving forward.

Did you know...

Mastering Change Data Capture

You can move beyond batch processing and harness real-time data to power AI and faster decisions? Discover how in our new eBook, Mastering Change Data Capture.