Forum Discussion
Create group from multiple columns for funnel chart
- 5 years ago
lokeshb31 , In funnel visual you can use all measures. Do not add group
examples
Applicants = count(Table[candidate_id])
Hired= calculate(count(Table[candidate_id]), filter(Table , Table[Hired] ="Yes"))
Interviewed = calculate(count(Table[candidate_id]), filter(Table , Table[Interviewed] ="Yes"))
offered = calculate(count(Table[candidate_id]), filter(Table , Table[Interviewed] ="offered"))
lokeshb31 , In funnel visual you can use all measures. Do not add group
examples
Applicants = count(Table[candidate_id])
Hired= calculate(count(Table[candidate_id]), filter(Table , Table[Hired] ="Yes"))
Interviewed = calculate(count(Table[candidate_id]), filter(Table , Table[Interviewed] ="Yes"))
offered = calculate(count(Table[candidate_id]), filter(Table , Table[Interviewed] ="offered"))
- lokeshb315 years ago
Helper II
Thanks Amit. I did not think of that we can use all values and group can be blank for funnel. It worked.