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

Dimension values on the funnel itself

I have a funnel chart and want to display the labels on the funnel itself. I was able to do this for values but not for dimension.

For more clarity have a look at the picture.Can this be done?

1 Solution

Accepted Solutions
tobias_klett
Partner - Creator II
Partner - Creator II

Hi utkarsh,

yes use $(=getcurrentfield(DrillDownGroup)) instead of the Dimension.

Tobias

View solution in original post

7 Replies
tobias_klett
Partner - Creator II
Partner - Creator II

Hi utkarsh,

go to Expression an mark "Values on Data Points" extend the Expression like this:

dual(YourDimension, YourCurrentExpression)

Make sure the numbers tab in on Default.

Hope this helps

Tobias

christian77
Partner - Specialist
Partner - Specialist

Hi, here it is

Anonymous
Not applicable
Author

Hi Tobias,

It worked! but the problem is, I have a drill down in this graph and so the values should change dynamically.

Is this possible?

Anonymous
Not applicable
Author

Thanks for the reply Christian,

I have a drill down in this chart so the values should change dynamically as I drill down.

tobias_klett
Partner - Creator II
Partner - Creator II

Hi utkarsh,

yes use $(=getcurrentfield(DrillDownGroup)) instead of the Dimension.

Tobias

Anonymous
Not applicable
Author

Okay now I am getting greedy . If I want both the dimension and the value inside the funnel, how would you do that?

tobias_klett
Partner - Creator II
Partner - Creator II

dual($(=getcurrentfield(DrillDownGroup)) &' '& YourCurrentExpression , YourCurrentExpression)