Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,660 members
  • 7,325 online
  • 1,995,550 posts
  • 149,554 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    GeoAnalytics

    Error: GeoAnalytics Invalid URL when importing GeoJSON with geoAnalytics+

    Dear all, i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within... Show More

    Dear all,

    i have a local installation of latest GeoAnalytics Server and GeoAnalytics+. The installation is working and it's extension is usable within QlikView 12 Developer & ajax client.

    Now I would like to use a local file within GeoAnalytics.

    I tried to use the GeoAnalytics Connector with GeoAnalytics+ option and following settings:

    senior_v_0-1713967994990.png

    The error indicates, that the path is somehow wrong.

    file:///P:\Qlik\GeoAnalytics\CustomMaps\bezirke_999_geo.json

    Any idea what i'm doing wrong?

     

    Thanks in advance

    Show Less
  • forum

    Qlik Replicate

    Qlik Replicate - Using UPSERT mode when writing to Snowflake

    Hi Qlik Support, When using an UPSERT error handling policy (as a result of enabling the "Apply changes using SQL MERGE" option) in a Replicate task w... Show More

    Hi Qlik Support,


    When using an UPSERT error handling policy (as a result of enabling the "Apply changes using SQL MERGE" option) in a Replicate task which writes to Snowflake, is Replicate able to correctly prevent duplicate records from being written to the Snowflake target even though Snowflake is known to not enforce the uniqueness of primary keys.

     

    Apologies if this question has already been addressed in a different community post.

     

    Thanks,

    Nak

    Show Less
  • forum

    Qlik Replicate

    Is it possible to convert the values stored in the "Change_Mask" column into bit...

    I'm trying to convert the values stored in the "Change_Mask" column into bit format or Hex values for transformation into bit format, but I can't do i... Show More

    I'm trying to convert the values stored in the "Change_Mask" column into bit format or Hex values for transformation into bit format, but I can't do it because I don't know the format of the stored values. This is to distinguish between columns updated with 'Null' values and those not updated in the "Change table" used in store changes. While during "change apply," we can differentiate in the "attrep_changes_xxxxx" table, such as 'attu_Null', the "change table" doesn't allow distinguishing whether a column was updated with Null values or if no update occurred. Therefore, I request a method to change the values of "Change_Mask" into bit format (e.g., a value that allows checking the changed column positions like 1100111).

    Show Less
  • forum

    New to Qlik Analytics

    Which chart to be used for 4 dimensions and 1 expression

    Hi, Could someone suggest me which chart to be used with 1 expression and 4 dimensions? I have already tried with Line and Bar chart, but could not ac... Show More

    Hi,

    Could someone suggest me which chart to be used with 1 expression and 4 dimensions? I have already tried with Line and Bar chart, but could not acheive desired result.

     

    Thanks in advance

    Show Less
  • forum

    Connectivity & Data Prep

    QVD storing to Azure Storage

    I am able to read a QVD file just fine using the Azure Store Data Connections.  But when I try to write a QVD to the Azure Store location I am getting... Show More

    I am able to read a QVD file just fine using the Azure Store Data Connections.  But when I try to write a QVD to the Azure Store location I am getting the following error message.  The account does have RW access to the storage area.

    The following error occurred:
    Cannot open file:xxxxxxxxxxxxxxxxxxxx
    (Native path: ***
    System error: ***)

    The error occurred here:
    Store NewData into data connection

    Thanks in advance for your help

     

    Show Less
  • forum

    QlikView Integrations

    Sending Email to More than Two Recipients Using Qlikview Macros through Outlook

    Dear All, Anytime I am sending emails to more than two recipients, the macros would give this error "that "Outlook does not recognize one or more name... Show More

    Dear All,

    Anytime I am sending emails to more than two recipients, the macros would give this error "that "Outlook does not recognize one or more names. " and it would highlight objMail.Send in my code. here is my  code: 

    Sub mSendMail(pdfFilePath)
    Dim objOutlk
    Dim objMail
    Const olMailItem = 0

    ' Check if Outlook is already running
    On Error Resume Next
    Set objOutlk = GetObject(, "Outlook.Application")
    On Error GoTo 0

    ' If Outlook is not running, start it
    If (objOutlk = "") Then
    StartOutlook
    ' Wait for 5 seconds for Outlook to start
    ActiveDocument.GetApplication.Sleep 5000

    ' Create a new instance of Outlook application
    Set objOutlk = CreateObject("Outlook.Application")
    End If


    ' Create a new mail item
    Set objMail = objOutlk.createitem(olMailItem)

    ' Recipient's email address
    objMail.To = "example@yahoo.com"

    objMail.Cc = "example2@gmail.com"

    ' Subject of the email
    objMail.Subject = "Testing " & Date()

    ' Body of the email
    objMail.HTMLBody = "Body of the email, This is an automatic generated email from QlikView."

    ' Add attachment (use the generated PDF file)
    objMail.Attachments.Add pdfFilePath

    ' Send the email
    objMail.Send

    ' Release resources
    Set objMail = Nothing
    Set objOutlk = Nothing
    End Sub

    if I add BCc to the ' Recipient's email address it would complain : 

    ' Recipient's email address
    objMail.To = "example@yahoo.com"

    objMail.Cc = "example2@gmail.com"

    objMail.BCc = "example3@abc.com" or I added two email to the cc like this 

    Recipient's email address
    objMail.To = "example@yahoo.com"

    objMail.Cc = "example2@gmail.com, example7@abc.com" it would say  "Outlook does not recognize one or more names. " and it would highlight objMail.Send in my code. here is my  code, 

    Please, what can I do to be sending emails to more than 10recipients at the same time .

    Thanks

    Show Less
  • forum

    Integration, Extension & APIs

    Variable Input - invalid visualization - after importing an app from the old to ...

    Hi all,   Lately, updated the Qlik instance from the version May 2022 to February 2024.   I have exported the existing apps from the old instance and ... Show More

    Hi all,

     

    Lately, updated the Qlik instance from the version May 2022 to February 2024.

     

    I have exported the existing apps from the old instance and then imported to the new one.

     

    Now "Variable input" bundle shows the following error message: invalid visualization

     

    Screenshot 2024-04-24 at 12.38.32.png

    What can be missing here?

    What can be done here to solve this issue?

     

     

    Show Less
  • forum

    New to Qlik Analytics

    Generate code when joining two tables

    Hello communityHow can I generate a code when joining two tables? Example: Tabla 1 (Database) + 200 records Tabla 2(Database) + 200 records Table 3(... Show More

    Hello community
    How can I generate a code when joining two tables?

    Example:

    Tabla 1 (Database) + 200 records

    rmendoza_2-1713958093717.png

    Tabla 2(Database) + 200 records

    rmendoza_1-1713958007413.png

    Table 3(Excel) has the code... depending on the condition. (+ 200 records...many combinations)

    rmendoza_3-1713958176493.png

    thanks for your time.

    cheers

    Renzo

     

     

    Show Less
  • forum

    Connectivity & Data Prep

    Fetch Data with the Qlik Jira Connector

    Is anyone familiar with the Qlik Sense Jira integrated connector? I'm trying to fetch a specific field from Jira: the Issue's original estimated time.... Show More

    Is anyone familiar with the Qlik Sense Jira integrated connector?

    I'm trying to fetch a specific field from Jira: the Issue's original estimated time.

    However, the provided Jira connector script for issues doesn't seem to include this importanr field, which strikes me as odd.

    Does anyone have insight or suggestions on how I might access this field? I believe its original name is 'originalEstimate'."

     

    Jira Connector script for issues:

     

    "SELECT
    id,
    key,
    fields_summary,
    fields_description,
    fields_environment,
    fields_created,
    fields_lastViewed,
    fields_updated,
    fields_resolutiondate,
    fields_duedate,
    fields_labels,
    fields_components_ids,
    fields_components_names,
    fields_fixVersions_ids,
    fields_fixVersions_names,
    fields_versions_ids,
    fields_versions_names,
    fields_creator_accountId,
    fields_creator_active,
    fields_creator_displayName,
    fields_creator_emailAddress,
    fields_creator_key,
    fields_creator_name,
    fields_creator_timeZone,
    fields_assignee_accountId,
    fields_assignee_active,
    fields_assignee_displayName,
    fields_assignee_emailAddress,
    fields_assignee_key,
    fields_assignee_name,
    fields_assignee_timeZone,
    fields_reporter_accountId,
    fields_reporter_active,
    fields_reporter_displayName,
    fields_reporter_emailAddress,
    fields_reporter_key,
    fields_reporter_name,
    fields_reporter_timeZone,
    fields_issuetype_description,
    fields_issuetype_iconUrl,
    fields_issuetype_id,
    fields_issuetype_name,
    fields_issuetype_subtask,
    fields_priority_iconUrl,
    fields_priority_id,
    fields_priority_name,
    fields_status_id,
    fields_status_name,
    fields_status_description,
    fields_status_iconUrl,
    fields_resolution_id,
    fields_resolution_name,
    fields_resolution_description,
    fields_votes_hasVoted,
    fields_votes_votes,
    fields_watches_isWatching,
    fields_watches_watchCount,
    fields_parent_key,
    fields_parent_id,
    fields_subtasks_ids,
    fields_subtasks_keys,
    fields_issuelinks_ids,
    fields_issuelinks_keys,
    fields_outwardIssueLinks,
    fields_inwardIssueLinks
    FROM Issues
    WITH PROPERTIES (
    projectIdOrKey='$(vProjectId)',
    createdAfter='',
    createdBefore='',
    updatedAfter='', 
    updatedBefore='',
    customFieldIds='',
    jqlQuery='',
    maxResults=''
    );"

    Show Less
  • forum

    GeoAnalytics

    Qlik Geo Analytics - Dissolve Area using the Postcal code data [UK]

    Hi everyone, I'm working on a project that involves dissolving areas based on UK postcodes. I've been following the official guide, but I keep encount... Show More

    Hi everyone,

    I'm working on a project that involves dissolving areas based on UK postcodes. I've been following the official guide, but I keep encountering an error message that says "unknown column in dissolve table."

    To help troubleshoot, I've attached a sample dataset containing "Postcode" and "Place Name" columns. Ideally, I'd like to populate polygon shapes for each place name based on the corresponding postcode.

    Any advice or guidance on how to resolve the error  would be greatly appreciated. Thanks in advance for your help!

    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!