Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Guys,
I would like to create a Top 20 table with those conditions with maximum Nbre de case:
count(if(([Type de cas]='Demande d’information' or [Type de cas]='Réclamation' )and CustCode >= 2 and (Catégorie <> 'Service 1255' and Catégorie <> 'Outil 1255' and Catégorie <> 'Communication interrompue' ),[Code cas]))
The result is now all the rows that has the conditions above
any idea how to display only the Top 20
Thanks
if(
rank(total
count(if(([Type de cas]='Demande d’information' or [Type de cas]='Réclamation' )and CustCode >= 2 and
(Catégorie <> 'Service 1255' and Catégorie <> 'Outil 1255' and Catégorie <> 'Communication interrompue'
),[Code cas]))
,4 )<=20
,
count(if(([Type de cas]='Demande d’information' or [Type de cas]='Réclamation' )and CustCode >= 2 and
(Catégorie <> 'Service 1255' and Catégorie <> 'Outil 1255' and Catégorie <> 'Communication interrompue'
),[Code cas]))
)
it didn't work, here is the result :
try first
rank(total
count(if(([Type de cas]='Demande d’information' or [Type de cas]='Réclamation' )and CustCode >= 2 and
(Catégorie <> 'Service 1255' and Catégorie <> 'Outil 1255' and Catégorie <> 'Communication interrompue'
),[Code cas]))
,4 )
I can't test it, because I don't have your data...
did you activate supress zero values?
Hello Robin,
I attached my data to my first query. I need the Top 20 rows with max Nbr de Cas.
Thanks for your help