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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
fmazzarelli
Partner - Creator III
Partner - Creator III

map: count

Hi Community,

just an extra.

On the map I'm making service count

Formula is: count(Services)

I would like to also display the number of vehicles used and foolishly I thought I would add the need with a ,

New Formula is:

count(Services, Vehicles) or count(Services) , count (Vehicles)

but it doesn't work.

Do you have a suggestion?

Immagine.png

1 Reply
MK9885
Master II
Master II

In Qlik Sense map unfortunately you cannot. As it allows only single expression.

You can +,-,/ the expression or use Set analysis but it will not show you multiple values.

'<b> Service</b>= ' & Count(Service)& '<br>' &

'<b> Vehicles</b>= ' & Count(Vehicles)& '<br>'

or

'Service : ' & Count(Service)& chr(10)

& 'Vehicles: ' & Count(Vehicles)& chr(10)

Usually this will work but it doesn't in Map you've