Getting Values Off A Trend Line

Jan 12, 2010

I have a simple x y scatter graph, to which i have a trend line running through it, fine.

what i need to do is fine some values according to that trend line. e.g. my X axis goes up to 60 and my Y axis goes to 10, so if i draw accross at 55 from the trend line, i then go down to a number on my Y axis.

View 14 Replies


ADVERTISEMENT

TREND Function Calculate 2 Possible Y Values Along A Line

Mar 25, 2014

I currently have in my equation the trend function to linear extrapolate the date a line would cross either my upper or lower limits (100.1 and 19.9) between 2 data points. However if the 2 data points span both the upper and lower limits (as per the 2 attached examples) then unfortunately the trend function is only able to return the 1 date (where I've specified the x value). Is there any way for the TREND function to trend the 2 values? Do I simply add the 2nd x value to the new x's?

I have attached both the data and their graphs to visually explain my problem : EF Workbook.xlsx

View 2 Replies View Related

Formula For The Trend Line.

Aug 5, 2008

1. I use a number of x,y pairs
2. From x,y pairs I produce "scatter" type chart
3. From the chart I get trend line and its equation e.g. 5-order polinominal
4. I convert equation into excel formula
5. I apply formula onto the same range of x argument and produce graph
6. The graph is very much different from the trend line!!! I would expect exact match as I use equation/formula for the trend line.

View 9 Replies View Related

Add Line To Chart To See Trend

Dec 5, 2007

On top of these graphs, i draw a line (insert a line shape) corresponding to a certain gradient in the data presented. I do not want this line to be exact (i.e. not point to point) as it is best to be drawn by eye so that the general 'gist' of the data can be found. What i would like, using any method available, is to be able to find the gradient of this line i have just drawn which obviosuly must be done taking into account the scale of the graph. The scales of the graph will not be consistent across all applications.

View 4 Replies View Related

Bar Chart With Trend Or Average Line (XY)

Jun 24, 2014

I've created a graph from data and need to add an average/net impact/trend line to the graph. From what I've read this needs to be an XY scatter, however, several efforts later and I can't seem to get it to work for me.

0514_Costs_DRAFT_ExcelF.xlsx

View 1 Replies View Related

Trend Line On Stacked Bar Diagram?

Jul 15, 2014

i have a stacked bar chart, similar to this: [URL] What i need is a trend line, similar to this: [URL] that shows the average of the bottom bar to date.

View 14 Replies View Related

Stock Chart With Trend Line

Feb 8, 2007

I want to show a stock chart in Open-High-Low-CLose format, then I hope that a trend line can be displayed at the same chart, what can I do? It seems like that stock chart can't be merged with another chart

View 7 Replies View Related

Export Graph Trend Line Equation

Jan 17, 2014

Is there a way to get an equation for a trend line and have excel automatically export the equation to a cell where it can be used. The only way i currently know how to do this is to manually type the equation.

View 8 Replies View Related

Exponential Trend Line Is Off From Input Data

Dec 6, 2013

I am trying to find the exponential equation from a set of data in excel. The problem is that the graph does not follow the scatter plotted points on the graph. How would you remedy this?

View 1 Replies View Related

Pivot Multiple Graph And Trend Line

Apr 11, 2007

I got a pivot table with following details Row Values: Dept_Code, Super_group, Product_Group Column Values: Ending_Date
Data: Sales, Availability%, Waste%, Number of Stores

i need to have a bar chart with trend line individually on each data items e.g.Sales, Availability% etc. when i tried to use trend line it prompts me to enter series i.e Ending_Date and it draws trend line for only that period comparing all data values. is there any way to have individual graph for Sales, Availability%, Waste%, Number of Stores with trend line covering

View 3 Replies View Related

Making A Trend Graph With Multiple Values?

Jul 17, 2014

I was asked to make a trend graph showing activation's and deactivation's over time. My boss wanted it to be done automatically when you placed values into a simple excel sheet like the attached image (the graph would be below this).

View 14 Replies View Related

Chart Trendline To Trend Only Specific Values

Oct 3, 2006

i have a workbook that contains a series of worksheets. the workbook is a master document list. the first worksheet contains no data. the remaining worksheets are arranged so that A1 has the document number, A2 contains the document title, and A3 contains the review date. Id like to create a search macro that can search for the string entered into textbox1. if this is a number, the macro should search A1:A50 of all but the first worksheets in the workbook, and if its text, the macro should search B1:B50 of all but the first worksheets.

the macro should then select the cell containing what was searched. then id like the macro to prompt me and ask if id like to modify the reviewed date to todays date. d like to be prompted to continue searching for other records if they exist, and after that loop has finished to set the focus back to the search textbox.

View 2 Replies View Related

How To Calculate Trend Line Growth Rate (as Annual Percentage Growth Rate)

Feb 13, 2014

From a chart in Excel I need to automatically calculate what the annual percentage growth rate is of a trend line. How to automate this in Excel? I've attached a sample so you can see what I'm trying to accomplish.

View 6 Replies View Related

Put All Values Of A Specifice Line In That Matrix In A Line

May 20, 2008

I'm working with matrix in vba and i'm trying to put all values of a specific line in that matrix in a line in excel. For example:

Matrix =
1 2
3 4

and i want Range("B1:B2") = 3 | 4 (the second line of that matrix).
Is there any way of doing this without perfoming a loop?
[something like Range("B1:B2").value = 'range'(matrix(0,0) , matrix(0,1)) ]

View 9 Replies View Related

New Line After Each Group Of Values

Mar 28, 2007

I want to do is insert a new blank line after each group of values eg

Column A
Dave
Dave
Dave
Richard
Sam
Sam

In this I want a new blank line to run in between the two names. However, the problem maybe when I add in new names because I will want them to be all grouped in eg Adding another Richard in will sort out the group to be this

Column A
Dave
Dave
Dave

Richard
Richard

Sam
Sam

Would I therefore be better off running a simple tidy up macro after new text had been inserted which reordered the text in column a alphabetically, then added a blank row between the names. Does anyone have some VBA code knocking round that does this? I have found this code here as a starting point (though I dont understand it)

Sub InsertBlankRows()
Dim currentCell As Range
Dim s As Integer, i As Integer, e As Long, c As Integer

Range("A4").Select
Set currentCell = ActiveCell

Do While Not IsEmpty(currentCell)

s = currentCell.Value
e = currentCell.Row
c = currentCell.Column

View 6 Replies View Related

Line Chart From Web Query Values

Feb 13, 2007

I have two cells whose values gets updated every minute using a Web Query.

1. Stock Price
2. Time

I would like to create a Line Chart with these two cells. The chart needs to plot and update automatically for every updated value received.

Since i dont have a range of data i have difficulties in setting up the chart.

View 5 Replies View Related

Visualize In Line Chart - Not Display Zero Values

Oct 14, 2011

I have a column of data that I'd like to visualize in a line chart. The cells in the column contain formulas that calculate numbers added to other sheets every month. The adjacent column has the names of each month. New data appears when the data for the month is added.

I'd like to ask the chart to not display the values that are currently zero, because we haven't arrived at that month yet. So, for instance, the cell in the column for November 2011 has a zero, because the range it sums has no data in it yet.

Is there a way to do this without having to go back to each chart every month and change the range to add-in the new data?

View 14 Replies View Related

Line Chart With Intermittent Zero Values - How To Display?

Mar 16, 2009

I am charting the following data (for a lot of countries, and the data changes based on a pull down menu which selects the country).

Yr1Yr2Yr3Yr4Yr5
Country1167155175188155
Country2145n.a.150140166
Country3142154n.a.170160

What I don't want is the line on the chart plummeting to zero when there is a "-", i.e. no value.

If I chart this instead:

Yr1Yr2Yr3Yr4Yr5
Country1167155175188155
Country2145[.....]150140166
Country3142154[.....]170160

..., where [.....] means a blank cell, then the 145 does now show up at all.

View 5 Replies View Related

Creating A Line Graph With 2 Sets Of Values

Oct 21, 2009

I am trying to create a line graph to show the trends (up or down) of I-Fund vs Gold. The trouble I am having is how to set the axis. The date one is an easy one, but the gold range is more or less 800-1000, and the I-Fund is 13-18. How can I have these both on the same graph to compare? I am attaching an Excel sheet as a reference. Obviously I need to delete the empty IFund cells.

View 2 Replies View Related

Use Values From Multiple Sheets In Line Chart?

Apr 9, 2014

I have multiple sheets from 'START' to 'END' as you can see below, the name of the sheets are dates.

I want all sheets to be listed in the 'INDEX' sheet. Every time I add a new sheet between 'START' and 'END' i want the new sheet to be listed.

I want to use the value from cell C5 in each sheet to my Line Chart on the 'INDEX' sheet.

In the X-axis in the Line Chart i want to use the dates.

View 1 Replies View Related

Find Certain Values Then Copy Part Of Line To Another Sheet?

Aug 6, 2012

I tried to make something to find a certain value (from a userform) in a range, and then copy the line partially to another sheet. Then go forth to the next found item and do the same. But... I cannot seem to make this loop.

With Sheets("Data input").Range("N5:N1100")
Dim FoundRange As Range
Worksheets("Data input").Activate

[Code].....

View 5 Replies View Related

Excel VBA Plotting Of Bar And Line Graphs Given Arrays Of X And Y Values

Jul 14, 2014

Plotting of bar and line graphs given an arrays of x and y values in VBA? I want to plot the rDateRange and rOEERange.

Code:
Dim rInitialDate As Range, rFinalDate As Range, rDateRange As Range, Calculation As Worksheet

With Worksheets("Calculation")
Set rInitialDate = .UsedRange.Find(What:=DateValue(InitialDate), After:=.Cells(1, 4), LookIn:=xlFormulas, LookAt:=xlWhole, SearchDirection:=xlNext, SearchFormat:=False)

[Code] .........

View 2 Replies View Related

Line Chart With Upper And Lower Limit Values

Sep 27, 2006

I want to make a line chart that plots a variable over time (say, monthly) and that shows upper and lower limits as the 2nd and 3rd plot. My table layout, boiled down to the bare essentials:

Col 1 = Measurement date
Col 2 = Measurement (pressure, for example)
Col 3 = High limit (never varies)
Col 4 = Low limit (never varies)

The chart/graph in this case would show at a glance how water pressure varies over time and when it goes over (under) a limit. The table has about 50 variables.

View 3 Replies View Related

Show/Display Negative Chart Values Above Line

Oct 9, 2006

I have a spreadsheet where I track income (positive) and expense (negative) items and compare budget to actual amounts. I want to create a simple bar graph comparing budgeted amounts to actual amounts for each item.

However, when I do this, I see all of my income items above the line (pointing up) and all of the expense items below the line (pointing downward).

Is there an option I can select to just use absolute values for the items so they all appear above the line?

View 3 Replies View Related

Line Chart Showing Values Over Time Intervals

Feb 18, 2007

I'm trying to do a line chart showing two teams and their cumulative scores over the period of a game. I've attached a sample with mock data. Is it possible to change the x-series of the charts to display custom time intervals like 0 min 1 min, 2 min, 3 min, 4 min, etc? Currently the x-series only has labels for each specific time there was a change in value. I've tried to change the scale but the options that I want aren't there.

View 2 Replies View Related

TREND Between Two Points

Jan 6, 2009

I have two columns where TREND does not work well. I want to calculate the TREND value of Column 2 (PERCENTILE RANK) based on a new RAW number. If I TREND between just the two rows, the value is fine (i.e. If I TREND between 105 and 110 RAW, I get the right PERCENTILE RANK if the new X value is 106 (which is 15.3% PERCENTILE RANK). How can I make a formula that will only look at the two rows and TREND just those two rows to give me the right PERCENTILE RANK.

RAW PERCENTILE RANK
10514
11020.4
11121.8
11729.5
11833
12342.5
12444.5
12954.4...........

View 5 Replies View Related

Count Unique Values - Show Each Line Which Includes Other Data?

Mar 6, 2014

I need to count the # of unique employee #s based on the criteria in column B. If the value in column B=0 then I do not want to count the employee #.

I realize a pivot table would be much easier but I need to show each line which includes other data.

View 6 Replies View Related

Table Presentation: Diagonal Line Splitting Two Values In One Column

Mar 4, 2007

I have a table with data representing $income vs %Debt burden respectively. The data on the table per respective intersection provides number of accounts and total ($)value of accounts. I have tried to combine the two pieces of information into one column and have a diagonal line separating the two numbers. (sample table attached).

View 2 Replies View Related

Seasonal Forecasting Trend

Apr 2, 2009

I'm trying to figure out how to do seasonal forecasting based on volumes. I tried to use FORECAST but the numbers are not accurate.

I have actual data to work with to come up with my forecasting on a monthly basis. Our yearly calender is from Nov 08 to Oct 09.

Here's a sample of the data....

View 12 Replies View Related

Trend Data Points

Dec 14, 2008

What I have is a column (column A) that only has two data entries at any one time.
I need column B to fill in the trend of those two data points.

My problem is I don't know how to deal with the cells that say #N/A. Which is every cell other than the two cells with data.

If I replace the #N/As with say 1, then it messes up the trend data points.

It seems like I need to be using the trend command, but any solution would be welcome.

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved