Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I need advice on how to make a Power bi formula work in Qlik Sense. I have been trying to come up with something similar in qlik sense for quite some time now, but it never provided the flexability i had in Power Bi.
I need to apply percentile to a data set and be able to change dinamicly. If the % i am applying is 5% of 100 rows = 5rows, i need it to take the same 5% percentile when i filter for example on 50 rows and get 2.5 rows and so on.
Here is the formula in BI that worked:
It took me a while to prepare this reply as I was fighting with QlikSense to implement a solution; there are two implementation alternatives, the attached Qlik Application (qvf file) includes both of them, actually, I managed to implement one of the alternative, as I explain.
User Interface/Front End solution:
Script Driven Fields:
If(Count(Case_Number) > 1, Floor(fractile([RT_Seq], 0.05)), '-')
If(Count(Case_Number) > 1,
If( Count(Case_Number) = Ceil(fractile([RT_Seq], 0.95))
, Floor(fractile([RT_Seq], 0.95)),Ceil(fractile([RT_Seq], 0.95)))
, '-')
Results Phase 2 user interface:
Sum({$<Flag={1}>} Resolution_Time)
Avg({$<Flag={1}>} Resolution_Time)
Comments:
Well, this is all I can shared with you at the moment, I have some page reference which I will add in another reply tomorrow, as they are supporting concepts for this solution.
Please let me know your feed back, and if the Load Script implementation resolve your issue.
Hope this helps,
Thank you for the effords! I will review the solution and let you know my feedback!
Best regards,
Julia
I believe you misunderstood my question, as I believe the formulas you posted are for Qlik Sense, not Excel or Power BI, and my internet search for a function called "Fractile" in Excel/PBI yielded no results. I require them because in the attached solution, I forced the Lower and Upper values, which will not provide a good/solid foundation for the rest of the solution.