Skip to main content

Welcome to
Qlik Community!

cancel
Showing results for 
Search instead for 
Did you mean: 
  • 217,572 members
  • 8,960 online
  • 1,995,388 posts
  • 149,532 Solutions
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Welcome to Qlik Community

Recent Discussions

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

    QlikView App Dev

    newline in expression

    HiI've tried everything but cant figure out how to insert a new line character... I would like to show these three fields below each other. nl doesn't... Show More

    Hi

    I've tried everything but cant figure out how to insert a new line character... I would like to show these three fields below each other. nl doesn't work...


    =Maxstring(If([L1] = VarL1Out and Isnull([L2]),[HoverText])) &'. Actual: '
    &Maxstring(If([L1] = VarL1Out and Isnull([L2]),[Actual])) & '. Target: '
    &Maxstring(If([L1] = VarL1Out and Isnull([L2]),[Target]))
    {/code]
    Currently the help text looks like this:
    My hovertext. Actual: 50.4. Target: 55.5
    I want to be like:
    My hovertext.
    Actual: 50.4.
    Target: 55.5</body>
    Show Less
  • forum

    Integration, Extension & APIs

    Route multiple QlikSense servers through Nginx

    Hello everyone, We have 2 QlikSense servers in our internal infrastructure and we want to expose these 2 servers externally, through Nginx.We would li... Show More

    Hello everyone,

    We have 2 QlikSense servers in our internal infrastructure and we want to expose these 2 servers externally, through Nginx.
    We would like to be able to access these servers via ourdomain.com/qliksense1 and ourdomain.com/qliksense2.
    Is it possible to configure Nginx to allow this?

    Furthermore, we also require virtual proxies for some of our custom apps and we would like to be able to access the virtual proxy via ourdomain.com/qliksense1/virtualproxy and ourdomain.com/qliksense2/virtualproxy.
    Is this possible?


    Thank you!

    Show Less
  • forum

    App Development

    Show PDF (Base64) as Picture in App

    Dear all,   I have a T-SQL table with a list of PDFs. Each PDF is a 1 single page encoded in varbinary max.   I was able to convert this varbinary to ... Show More

    Dear all,

     

    I have a T-SQL table with a list of PDFs.

    Each PDF is a 1 single page encoded in varbinary max.

     

    I was able to convert this varbinary to a base64 but I cannot display the result with 'data&colon;image/jpg;base64' into a table.

    Is there some other balise or viewer that can display base64 PDF in QlikSense ?

    Or any way to convert a PDF to PNG Base64 ?

     

    Thanks,

    Sébastien

    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
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!