Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SVG Map extension Popup content

Hi there,

I am scripting the popup content in SVG map extension. The content I am going to show is like this (as follows):

Sales: $2000

Quantity: 300

# of customers: 60

Since the total sales, quantity and number of customer need expressions, how can I combine the text and expression together using script? Thank you so much!!!

Best Regards,

Gloria

1 Reply
Not applicable
Author

Something along the lines of:

='Sales: '&sum(sales)&'<br/>'&

'Quantity: '&sum(quantity)&'<br/>'&

'# of customers: '&count(distinct customer)

The <br/> is the html equivalent of the ascii chars that are used in standard QV chart text.