Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,636 members
  • 7,433 online
  • 1,995,489 posts
  • 149,549 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • forum

    App Development

    Showing Number a decimal point sequence

    Hi there. I have a series of documents which are version numbered, e.g. 5.1, 5.2, ...5.9, 5.10, 5.11 etc. Any number which ends in a zero is converted... Show More

    Hi there.

    I have a series of documents which are version numbered, e.g. 5.1, 5.2, ...5.9, 5.10, 5.11 etc.

    Any number which ends in a zero is converted to remove the zero (e.g 5.10 becomes 5.1)

    I would like two things:

    1 - Show numbers as thier original form, e.g. 5.10 should be 5.10

    2 - Allow sorting on the field ascending e.g (5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 5.10, 5.11 etc)

    Thanks for your help.

     

    Mark.

    Show Less
  • forum

    App Development

    PUSANTE SELEZIONE

    Buongiorno, Come eseguire una selezione multipla su più elementi in un campo mediante un Pulsante ? (Azione: Seleziona nel Campo...) Con Sense si mett... Show More

    Buongiorno,

    Come eseguire una selezione multipla su più elementi in un campo mediante un Pulsante ? (Azione: Seleziona nel Campo...)

    Con Sense si mette il punto e virgola tra un elemento e l'altro, tra apici...ma in View non funziona...

    Grazie, Maurizio

    Show Less
  • forum

    App Development

    VBScript

    Hello,   I can create a Module with VB Script, whre can I find a descriptio: how to write a VB Script.   tanks in advance   Frédéric
  • forum

    New to Qlik Analytics

    Include NULL Values Handling in KPI charts in Qlik sense

    Hello Everyone, I have an issue with the Set expression in KPI chart. i'm calculating the percentage in my expression i'm using Parent incident id for... Show More

    Hello Everyone,

    I have an issue with the Set expression in KPI chart. i'm calculating the percentage in my expression i'm using Parent incident id for this column is having Null values i want to calculate the Null values. but while calculating the t column not considering. please find the below expression

    Num(sum({<Goal={'Cpi - Critical - Restore'},ID={'365'},Reported_13Month={1},[Status]={0},[Parent Incident ID]={'Null'}>}[Ticket Count])/sum({<Goal={'Cpi - Critical - Restore'},ID={'365'},Reported_13Month={1},[Parent Incident ID]={'Null()'}>}[Ticket Count]),'##.##%')

    please anyone can help me on this.

    Show Less
  • forum

    New to Qlik Analytics

    Getting error for relaoding a task

    Hi,   I am getting an error for reloading a task(in attachment). Could anyone help?   Thanks in advance!
  • forum

    Qlik Cloud Data Integration

    Unable to Create Data Gateway

    I am not seeing the option in Mgmt Console to create Data Gateway - why? could it be my subscription? I am seeing the option to use Data Integration.
  • forum

    Qlik Cloud Data Integration

    Block status

    Hello,  I've some users in Basic user and 7 full user on qlik cloud capacity . But when a Basic user try to connect  in an apps he was directly transf... Show More

    Hello, 

    I've some users in Basic user and 7 full user on qlik cloud capacity . 
    But when a Basic user try to connect  in an apps he was directly transform in a full user asked . 
    We use Microsoft Entra as ID provider  and the basic user is in a group how has just a restricted access.

    How to block that to avoid the full user asked ? 

    Best regards 

    PS: someone know when a basic user we will able to download a table as data and not in jpg ou pdf ? 

    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

    Design and Development

    Truncate/insert option in tDBOutput causing open sessions on SQL SERVER Database

    Hello everyone,  I would like to have your input/advise/guidance on below described problem.  Problem description:  I have a Talend job with a tDBOutp... Show More

    Hello everyone, 

    I would like to have your input/advise/guidance on below described problem. 

    Problem description: 

    I have a Talend job with a tDBOutput connected to a SQL Server Database. Actions on this component are truncate/insert. This is causing open sessions to be left on the SQL SERVER database blocking any other jobs that are launched in the same DB. There are no links in between the jobs. 

    There is no shared connection used in my job. The tDBOutput connects directly to the database via context variables. 

    As soon as i put the tDBOutput in default/insert with a delete at the beginning, the problem of open sessions disappear. 

    I would like to know is someone ever came across this problem. 

    If yes, what are the solutions that have been tested by keeping the truncate option?

     

    Show Less
  • forum

    Data Quality, Preparation & Stewardship

    Talend open studio for data quality

    Hey ! I'm on the lookout for Talend for Data Quality software, but I'm having trouble finding it. Can anyone confirm if it's still available for insta... Show More

    Hey !

    I'm on the lookout for Talend for Data Quality software, but I'm having trouble finding it. Can anyone confirm if it's still available for installation? Any help would be greatly appreciated! Thanks in advance! 🙏

    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!