Read percentile value at any point on the X-axis

Joined
May 16, 2010
Messages
5
I have a plot with set phi grain size values on the X-axis, and percent on the Y axis. The plot is made by calculated cumulative values.

What I need is a way to determine what the grain size value (X) is at any point (n'th percentile) on the "cumulative curve" (see picture). I should add that there is a ~ 0,25 (~.50 in the picture) jump between each value on the X axis.

aa728bbad06de21176a5da4128a2284c.png


I hope someone can help me. I'm working on my thesis with a dead-line running towards me..
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
There are no functions in Excel to read a value from the plot line on a chart. You can, however, calculate a value from your data.

The two methods I know of are
  1. Best fit Trendline formula
  2. Linear formula from the two bracketing data points.

Best fit Trendline:
  • Right-click on the plot line on the chart and select "Add Trendline"
  • Type: (for your data) 6 order polynomial
  • Options: Checkbox "Display equation on Chart"
  • Ok
    Use the displayed equation in a cell formula to calculate for an unknown.


Linear formula of bracketing data:
Say you have data points for 50% and 60%. You want to calculate for 57%
=FORECAST(57%, 2_Cells_known_Xs, 2_Cells_known_Ys)

2_Cells_known_Ys are the two cells with 50% and 60%
2_Cells_known_Xs are the two cells with 50% x value and 60% x value
Note: you can transpose the known Xs and Ys in the formula to calculate for an unknown Y (instead of X).
 
Upvote 0

Forum statistics

Threads
1,215,842
Messages
6,127,227
Members
449,371
Latest member
strawberrish

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top