Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Total value not showing up when mouse hover the total bar ...

Hi,

May i know is there a way to configure the Qlikview to show the total value when you mouse hover the total bar?

I was using the expression total.

For more info, kindly please refer to the attached word doc and sample QVW file.

Thanks, gk

1 Solution

Accepted Solutions
Sokkorn
Master
Master

Hi gt,

Let check my attached file and try to mouse hover the total bar. This one is not a good solution for you yet. But we try to find the best one together.

Regards,

Sokkorn

View solution in original post

7 Replies
Not applicable
Author

Attached the word doc ... thanks!

Sokkorn
Master
Master

Hi gk,

Did you try to check on <Values on Data Points> in Expressions Tab? I think this one is the second solution for your customer.

Regards,

Sokkorn

Not applicable
Author

Thanks Sokkorn ... Actually, the customers prefer not to show the values on the chart. Besides this, may i know is there any other possible method? Thanks.

Sokkorn
Master
Master

Hi gt,

Let check my attached file and try to mouse hover the total bar. This one is not a good solution for you yet. But we try to find the best one together.

Regards,

Sokkorn

Not applicable
Author

Hi Sokkorn, thanks a lot! Although this may be not a good solution, but it works perfectly fine! Thanks again
Kindly please let me know if you found a better solution...

Sokkorn
Master
Master

Hi gk,

I got this solution from John.

So load data like this:

[Data]:

Load * inline [

fiscal_qtr, amount

'2012-Q2', 100

'2012-Q1', 200

'2011-Q4', 300

'2011-Q3', 400

];

[Temp1]:

LOAD

'Total' AS TypeGroup,

fiscal_qtr

RESIDENT Data;

CONCATENATE ([Temp1])

LOAD

fiscal_qtr AS TypeGroup,

fiscal_qtr

RESIDENT Data;

Create Bar Chart with TypeGroup as Dimensions and Sum(amount) as Expression.

Regards,

Sokkorn

Not applicable
Author

Thanks Sokkorn