Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
nazishm
Regular Visitor

Can we calculate/show the 50% percentile

Can we calculate 50% percentile of values in a particular column and plot it in Y-axis alone. 
Can anyone help me with this

nazishm_0-1669787340182.png

 



1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @nazishm 

Yes, you can try this solution,

create the measure below

 

50% value = 0.5* MAX('Table'[value])

 

vxiaotang_0-1669884782010.png

in measure, you need to use the aggregation functions to get the value in current row, which are max(), min(), selectedvalue(). 

SELECTEDVALUE function - DAX | Microsoft Learn

SELECTEDVALUE – DAX Guide

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @nazishm 

Yes, you can try this solution,

create the measure below

 

50% value = 0.5* MAX('Table'[value])

 

vxiaotang_0-1669884782010.png

in measure, you need to use the aggregation functions to get the value in current row, which are max(), min(), selectedvalue(). 

SELECTEDVALUE function - DAX | Microsoft Learn

SELECTEDVALUE – DAX Guide

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

NikhilChenna
Skilled Sharer
Skilled Sharer

Hi @nazishm ,

The simple way to achieve it is by creating a calculated measure.

go through this link for more detailed explanation. 

https://www.youtube.com/watch?v=TeFQstHX8Fs

 

Regards,

Nikhil Chenna

 

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors