Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,577 members
  • 7,096 online
  • 1,995,393 posts
  • 149,536 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

  • 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

    Qlik Cloud Data Integration

    How to use tJava to read the contents of a file

    I am trying to read the contents of a text file using a tJava component.  I have been having issues getting java.io.FileInputStream to work.  Does any... Show More

    I am trying to read the contents of a text file using a tJava component.  I have been having issues getting java.io.FileInputStream to work.  Does anyone have sample code on how to read a file?

     

    Show Less
  • forum

    New to Qlik Analytics

    Dont want section data to be linked to each other

    I have sections in my data load script. Currently, I have two sections, and they are pulling data from entirely different tables. However, they appear... Show More

    I have sections in my data load script.

    Currently, I have two sections, and they are pulling data from entirely different tables. However, they appeared to be linked. When I go to the pivot, it pulls data based on a selection of the other sections.

    How can I have each data pulled from their respective sections?

    Also, it is slowing the application.

    Show Less
  • forum

    Deployment & Management

    How to implement custom properties in a load balancing rule for a Schedule.

    How to implement custom properties in a load balancing rule for a Scheduler, where any tasks that applications have these custom properties run only o... Show More

    How to implement custom properties in a load balancing rule for a Scheduler, where any tasks that applications have these custom properties run only on the designated node.

     

    Ex.:

    I have this scenario, Node Central and RIM. Some applications need execute task (schedule resource) in a RIM node e others in Central Node.

    App A > Consuming resource for this node Central.

    App B > Consuming rosource for this RIM.


    Doing custom properties for a separete an level the app, only resource engine forwad for RIM, anyway task in QMC have a priority execute in Central node first.

     

    This is possible? Managed where this task is executed and consumition resource for node RIM?

    Show Less
  • forum

    New to Qlik Analytics

    Slider

    Hi, is there a way to get rid of this, so i can do the last post clickable? The table hav lot's of data so it's need to be there so i can move it to t... Show More

    Hi, is there a way to get rid of this, so i can do the last post clickable?

    The table hav lot's of data so it's need to be there so i can move it to the right, but the last post i cannot choose.

     

    JohnSSI_0-1713884638999.png

     

    Show Less
  • forum

    Move to SaaS

    Replace app on managed space from qlik sense enterprise client-managed environme...

    I went to various forums and did lot of R&D but could not found proper method or way to replace an existing application on managed space in saas with ... Show More

    I went to various forums and did lot of R&D but could not found proper method or way to replace an existing application on managed space in saas with an app existing in my Qliksense enterprise client. 

    The same app was initially uploaded through the cli.

    ##Set the context to the SaaS instance of Qlik Sense
    qlik context use QSESaaS1
    
    ##specify an app name for the imported app
    $filepath="C:\temp\"
    $filename="Demo SaaS"
    
    ##Issue the command so it returns the GUID for the app in SaaS to a variable or stdOut for future use.
    $SaasAppId=$(qlik app import --file "$filepath/$filename.qvf" --mode new --name $filename | jq -r '.attributes.id')


    Now I have made few changes in the same app (which is on Qliksense enterprise), and want to publish and replace the same app on saas managed space.

    I have tried the following

    qlik app publish update $($SaasAppId) --attributes-name "MyFirstSaasApp" --targetId $($target) --checkOriginAppId=false -v

     But I see every time a new app is being uploaded on personal space instead of replace on managed.

    Kindly guide the correct way to achieve it.

    Show Less
  • forum

    New to Qlik Analytics

    Qliksense Conference Orlando 2024

    Hi All, I registered for the Qlik Sense Conference in Orlando 2024. The official start date of the conference is June 3rd, but I don't see any session... Show More

    Hi All,

    I registered for the Qlik Sense Conference in Orlando 2024. The official start date of the conference is June 3rd, but I don't see any sessions available to enroll on that day. What would be the schedule for June3rd?
    Thanks

    Show Less
  • forum

    Qlik Application Automation

    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

    New to Qlik Analytics

    Creating a filter based on radius

    I have a field for postal code, latitude, longitude, state and city. The latitude and longitude is based on the center of the postal codes. I want to ... Show More

    I have a field for postal code, latitude, longitude, state and city. The latitude and longitude is based on the center of the postal codes. I want to be able to create a filter that pushes the data out to include other zip codes by their lat/lon coordinates based on whether the user selects 5, 10, 20, 25 or 50 mile radius. Is this possible in Qlik with the data I have available to me?

    Show Less
  • forum

    New to Qlik Analytics

    Changing The data in a table

    Hi, I have a data table consisting of two fields:OPNAME, NAMESTRING (This field consists of names separated by the sign "|") For example:OP1 "ABC|ABB|... Show More

    Hi,

    I have a data table consisting of two fields:
    OPNAME, NAMESTRING (This field consists of names separated by the sign "|")

    For example:
    OP1 "ABC|ABB|CVV"
    OP2 "VGB|ABB"
    OP3 "GGG"
    I want to reverse the table so that it appears in the following format:
    OP1 ABC
    OP1 ABB
    OP1 CVV
    OP2 VGB
    OP2 ABB
    OP3 GGG

    Thanks to anyone who can help how to do this.

     

    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!