Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
asmithids
Partner - Creator II
Partner - Creator II

Pop up on a bar chart expression set to Invisible not showing the expression label

Hello,

The pop up on a bar chart expression set to Invisible is showing the expression value but, not the expression label.  I tried using the following expression as a workaround but, it does not maintain the relative % value that I want. 


‘# of Orders= ‘ & Count(OrderID)

See attached screen shot.

Thank you in advance for any help with this issue!!

1 Solution

Accepted Solutions
maxgro
MVP
MVP

to calculate te relative

‘# of Orders= ‘ & Count(OrderID) / Count(Total OrderID)

or maybe Count(Total <somefield> OrderID)


to format use num

‘# of Orders= ‘ & num(Count(OrderID) / Count(Total OrderID), '#.##0,00%')

View solution in original post

2 Replies
maxgro
MVP
MVP

to calculate te relative

‘# of Orders= ‘ & Count(OrderID) / Count(Total OrderID)

or maybe Count(Total <somefield> OrderID)


to format use num

‘# of Orders= ‘ & num(Count(OrderID) / Count(Total OrderID), '#.##0,00%')

asmithids
Partner - Creator II
Partner - Creator II
Author

Thank you Massimo.  That did the trick!