Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
[Address Concat] &'<br />'& [Description] &'<br />'& 'Number of repairs in property:' & Count([Job No])
Align text on the left.
Some little change in expression have a look
[Address Concat] & ' : ' &'<br />'&
[Description] & ' : ' &'<br />'&
'Number of repairs in property: '&Count([Job No])