Forum Discussion
Cummulative count for funnel visual
- 5 years ago
Anonymous , Can you please try like one of the two ways and check
CuentaSKUporStatus =
CALCULATE (
COUNTA ( ALLClients_Export[ESTADO] ),
FILTER (
ALL ( ALLClients_Export ),
ALLClients_Export[Stageid] >= MIN ( ALLClients_Export[Stageid] )
)
)or
CuentaSKUporStatus =
CALCULATE (
COUNTA ( ALLClients_Export[ESTADO] ),
FILTER (
ALL ( Funnel_Lookup ),
Funnel_Lookup[Stageid] >= MIN ( Funnel_Lookup[Stageid] )
)
) - Anonymous5 years ago
Hi Anonymous
You add ESTADO into the column in this matrix.
Firstly, you add Stage in Funnel_Lookup(you related stageid in ALLClients_Export to stageid in Funnel_Lookup) into the column in this matrix.
The Value 'Aprobados' in Stage in Funnel_Lookup will relate to stageid 10 in ALLClients_Export.
We can see if we filter stageid =10 in this table, ESTADO will contains three values.
Result:
Aprobado (value in Stage in Funnel_Lookup) = Aprobado+Aprobado+Error Smarter +Aprobado-Sin PDF (value in ESTADO in ALLClients_Export) = 1056+22+3=1081.
It means the result you got is correct.
If you want to show 1081 in Aprobado, you can add Stage into matrix column.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The first option got really close and this is the result:
Every stage count is ok except for "Aprobados" which should be showing 1081. I don´t understand why this is the case.
The other solution seems accurate but I can´t filter it by month which would make the funnel pretty much useless.
Thank you very much for your help!
Hi Anonymous
You add ESTADO into the column in this matrix.
Firstly, you add Stage in Funnel_Lookup(you related stageid in ALLClients_Export to stageid in Funnel_Lookup) into the column in this matrix.
The Value 'Aprobados' in Stage in Funnel_Lookup will relate to stageid 10 in ALLClients_Export.
We can see if we filter stageid =10 in this table, ESTADO will contains three values.
Result:
Aprobado (value in Stage in Funnel_Lookup) = Aprobado+Aprobado+Error Smarter +Aprobado-Sin PDF (value in ESTADO in ALLClients_Export) = 1056+22+3=1081.
It means the result you got is correct.
If you want to show 1081 in Aprobado, you can add Stage into matrix column.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.