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

expression help

Hi,

We have the following expression on a Qlikmap which is working:

[Address Concat] &'<br />'& [Description] &'<br />'& Count([Job No])

however would like it have text before Count Job No to explain what it is. So ideally like the pop up box to read:

Address : xxxx

Repair Description: xxx

Number of repairs in property: xxx

Can anyone help?

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

[Address Concat] &'<br />'& [Description] &'<br />'& 'Number of repairs in property:' & Count([Job No])


Align text on the left.

its_anandrjs
Champion III
Champion III

Some little change in expression have a look

[Address Concat] &  ' : '  &'<br />'&

[Description] & ' : ' &'<br />'&

'Number of repairs in property: '&Count([Job No])