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: 
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!