Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

text pop-up

HI all,

I recently stumbeld upon this tip:

Qlik Tips: Custom popup labels on bar chart

Now I figured out how this works but is it possible to add text what its showing. Now it just gives me a number without telling me what the number means.

kind regards,

Vincent

3 Replies
bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

maybe you could use the dual function, this way you have both a text and a numeric value.

its_anandrjs

1.Yes add another expression and first of all uncheck the Text as Pop-up for all expression

2. Now from chart presentation properties uncheck the Pop-Up Labels

3. add expression


Eg:-

='Sales  for '&sum(sales) and check the Text as Pop-up

its_anandrjs

Yes you can use Dual functions also like below script

Dual(

  YourDimensionNameHere & ' - ' & Sum(YourExpressionFieldHere),

  Avg(YourExpressionFieldHere)

)