Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,631 members
  • 7,245 online
  • 1,995,480 posts
  • 149,547 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • 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

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

    QlikView Integrations

    ConvertToLocalTime() giving 1hr variance as compared to actual time

    Hi, If reloadtime() returns Europe time, for example 6am. Then, I try to ConvertToLocalTime(ReloadTime(), 'New Delhi') it should add 4.5 hours right... Show More

    Hi, If reloadtime() returns Europe time, for example 6am. Then, I try to ConvertToLocalTime(ReloadTime(), 'New Delhi') it should add 4.5 hours right and return 10:30 am? But it returns 11.30 am

    What's the mistake?

    Show Less
  • forum

    Qlik Replicate

    Wrong format when extract boolean column

    HEllo,  I extract one table that have one column in the database using 1 or 0 (boolean). During the extarction, Qlik modify this value and write False... Show More

    HEllo, 

    I extract one table that have one column in the database using 1 or 0 (boolean). During the extarction, Qlik modify this value and write False or True. Could you help to fix this, the business team wants 0 or 1.

    Thanks 

    Pau

    Show Less
  • forum

    App Development

    App Save Status

    Is there a way to determine whether the app has been saved successfully? In the script editor, we can see this information at the bottom right. Howeve... Show More

    Is there a way to determine whether the app has been saved successfully? In the script editor, we can see this information at the bottom right. However, for front-end development, I’m unable to find any location where I can check the status.

    *This is accessing the app from the QS Hub, QSEoW.

    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

    New to Qlik Analytics

    Accumulate and calculate running numbers from ingoing balance and running change...

    Hi, I'm working on financial KPI's and want to use the balance sheet as well as the P&L for analysis. The differences is that in the balance sheet you... Show More

    Hi,

    I'm working on financial KPI's and want to use the balance sheet as well as the P&L for analysis.

    The differences is that in the balance sheet you have an ingoing balance and then the changes during the month is booked and then you get an outgoing balance, in my dataset there is no ingoing balances available from the database from any tables that I've found.

    I want to to a rolling 12 months analysis on inventory turnover rate and need to be able to calculate averages for a twelve months period every month ending to get this KPI. 

    I've added the ingoing balance for 2021-05-01 manually and concatenated with the transaction data, from this I can get an outgoing balance every month with RangeSum and Above where I've set period of times to 100000, (maybe there is a smarter way) which gives me the outgoing balance every month.

    RangeSum(Above(Sum({<Sub_Group={'Inventory'}>}Amount),0,100000),)

    How do I use this? I need to bring the value from 2021-05-01 to 2024-03-31 for example to be able to get my outgoing balance for 2024-03-31, see example below.Qlikbild.png

    Is there a way to make a calculated field instead to use in set analysis or any other way that is more simple just shoot with ideas!

    Help much appreciated, thanks!

     

    Show Less
  • forum

    Qlik Application Automation

    Getting error while reloading the application Automation Monitoring app

    I'm encountering an error while reloading the application Automation Monitoring app. It is used to work properly, but for the past8 days, i have been ... Show More

    I'm encountering an error while reloading the application Automation Monitoring app. It is used to work properly, but for the past8 days, i have been getting this error. Could you please help me to understand the issue?

    Sharan_0-1713947028906.png

     

    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!