Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,659 members
  • 10,113 online
  • 1,995,543 posts
  • 149,554 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • 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

    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
  • forum

    Qlik Application Automation

    SQL database load results in a diffrent data outcome

    Using a SQL Query on a SQL database returns the following data:     With the following result: But executing the same SQL query into Qlikview return... Show More

    Using a SQL Query on a SQL database returns the following data:

     

     

    Marius__0-1713939123412.png

    With the following result:

    Marius__1-1713939168097.png

    But executing the same SQL query into Qlikview returns the following:

    Marius__2-1713939237984.png

    toetsOnveranderd - Test with no change

    toetsText - Using Text script formula to get text property

    toetsJippo  - Self help method to force test property

    With the following outcome in Qlikview:

    Marius__3-1713939396974.png

    It seems that the 'raw' data in the SQL database is 0965 (OneID,toetsOnveranderd)

    But the SQL query in SQL returns (0965,965) (?)

    And it seems that the script formula "Text" first identify the property is integer makes it a number and the concerts it to text 0965 -> 965 -> "965" 

    [It must be noted that data input is from multiple sources into the SQL database].

    This outcome of the usage of the the text formula vs 'raw' data causes a different result/outcome.

    Any idea how to "fix" this?

     

     

     

     

     

    Show Less
  • forum

    Qlik Replicate

    Pk handling in Oracle19c

    Hi Community, I'm currently working with Oracle 19c as a source, and I've some tables without primary keys. Need to configure a task for a full load w... Show More

    Hi Community,

    I'm currently working with Oracle 19c as a source, and I've some tables without primary keys. Need to configure a task for a full load with Change Data Capture (CDC). How should I proceed in managing the absence of primary keys in this scenario? Your guidance on handling this situation would be greatly appreciated.

    Regards,

    Pranita 

     

     

    Show Less
  • forum

    App Development

    Error referenced measure when nesting master measures more than 1 level deep?

    I have a master measure (let's call it "B"), which references another master measure (let's call it "A"). Master measure "B" works fine. Then when I c... Show More

    I have a master measure (let's call it "B"), which references another master measure (let's call it "A"). Master measure "B" works fine.

    Then when I create a new master measure "C" (which references master measure "B"), I get the error referenced measure, which Qlik has documented here. https://community.qlik.com/t5/Official-Support-Articles/Error-in-expression-Error-referenced-measure/ta-p/1845945

    I've made sure my master measure names are unique and non-overlapping with other names. Is nesting master measures more than one level deep not supported by Qlik?

    Show Less
  • forum

    Deployment & Management

    QMC tasks for Qlikview DEV Admin

    Hi, there, We need to give several Qlikview users certain admin privilege on our Qlikview DEV server. Here are what we have done so far:1. Have a new ... Show More

    Hi, there,

    We need to give several Qlikview users certain admin privilege on our Qlikview DEV server. Here are what we have done so far:
    1. Have a new AD group 'Qlikview DEV Admin' created and have users added into it.
    2. On Qlikview DEV server, added 'Qlikview DEV Admin' into the 'Qlikview Administrator' group.
    3. Created a new folder on Qlikview DEV server and assigned 'Qlikview DEV Admin' access to it.
    4. In QMC (System -> Setup -> QDS -> General tab -> Source Folders section), added a new Path for the folder created in previous step.

    It works, but there is one issue. In QMC -> Status -> Tasks, 'Qlikview DEV Admin' can see/run all tasks. But we only want them to see the tasks under one particular category (MRx_COAR in the attached image). Is it possible to do that?

    Thanks

    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!