Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Noor51
Creator
Creator

Funnel Chart Expression

Hi Everyone, 

I would appreciate help in being able to set up a funnel chart in Qlik sense on prem Nov 2024 patch 8. 

I have a dimension call "Stages" that has 3 values in it called "Intro", "Hand_Off", and "Close". 

I need a funnel thats in this order total count of "Stages" then "Total Stages - Intro" and etc.

What  would be set expression for this.

 

Labels (3)
1 Solution

Accepted Solutions
Kaushik2020
Creator III
Creator III

You may create a mapping inline load with a column SerialNumber with the numeric data in it. further you ca n sort it as Ascending or Descending based on requirement. let me know further. 

View solution in original post

4 Replies
MatheusC
Specialist II
Specialist II

Hi, @Noor51 
In the sorting tab, select by expression and with dual() and match() assign the order

MatheusC_0-1753893284194.png


dual(Dim,match(Dim,'value1','value2','value3'))

- Regards, Matheus

 

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
anat
Master
Master

create a Inline load 

load * inline [

stage,stage_ord

Intro,1

Hand_Off,2

Close,3

Total Stages,4

]

in the sort expression use sort by expression then useonly({1}stage_ord)

Noor51
Creator
Creator
Author

I have master measure, I want to organize it rows in this way, but isn't working. 

ValueList(
[Total Count],
[Introductory call],
[Request Data],
[Presentation Date],
[Sales Handoff],
[Pending Future Follow Up]
)

Kaushik2020
Creator III
Creator III

You may create a mapping inline load with a column SerialNumber with the numeric data in it. further you ca n sort it as Ascending or Descending based on requirement. let me know further.