Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
I am trying to find the 1Q Percentile for a set of numbers I have coming from SQL. For example say the numbers are:
0, 2, 1, 3, 4, 5, 6, 9, 8, 7, 10
I would expect the 25th percentile to be 2.
I have to find any solution that shows how to create an expression that can calcuate this.
Solved! Go to Solution.
Hi @PeteSil1020 ,
Please try to create a PBI dataset with below dax formula:
Measure = FLOOR(PERCENTILE.INC('Table'[Column1],0.25),1)
Then connect to this dataset in PBI report builder and use the measure.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @PeteSil1020 ,
Please try to create a PBI dataset with below dax formula:
Measure = FLOOR(PERCENTILE.INC('Table'[Column1],0.25),1)
Then connect to this dataset in PBI report builder and use the measure.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This worked perfectly, thank you very much!
User | Count |
---|---|
6 | |
4 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
3 | |
3 | |
2 | |
2 |