Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello all,
i have a table and want to show the TOP 20% of it like:
Headline1 / Headline2 / Headline3
Name / Name / count of serveral numbers
i wanted to show the top 20% of the counted numbers.
can someone help me?
greetz
i really dont understand why its not working... its showing me for all data 0. Do you have any idea Pradosh where the problem can be??? my data is build up like in the excel sheet. I really cant explain where the bug is...
Check the Excel. Maybe its easier to unterstand where the problem is. thank you for your support.
I don't think so, I have tried it in both. You can add dummy data in a dummy app first , check the expression , add more data , validate it, then use it in your main dashabord/app.
Hi
According to what i understood, First you have to find the top 20% of mistakes in a table, you can use the below expression
sum(mistakes)*100/sum(total mistakes)
Now you have to display top 20 names in top 20% you can use
if(rank(sum(mistakes)*100/sum(total mistakes))<count(total names)*.2,customer,Null())
This should suffice..