Hello,
I just recorded this macro:
ActiveSheet.Shapes.AddChart.Select
ActiveChart.ChartType = xlXYScatterSmoothNoMarkers
ActiveChart.SeriesCollection.NewSeries
ActiveChart.SeriesCollection(1).XValues = "=RawData_1!$A$2:$E$1500"
ActiveChart.SeriesCollection(1).Values =...
You are a Ninja indeed...both of these functions work very well.
Can you elaborate on the difference between an address and a reference in Excel? For instance:
=INDEX(F17:F90,MATCH(.001,E17:E90,1)) returns 4.138029 in this sheet, how does CELL use this number and output E31 using "address"...
Thats the problem, using the cell function wont work. In this sheet the slope is found by manually entering the start and stop.
https://www.dropbox.com/s/ck9lvzn1ly2kej1/Sample%20Slope%20File.xlsx
Aldo
Hello,
I am new to the forum and using Excel for data analysis in general, thanks for the help in advance.
I am working with some data and trying to find a slope in a linear region the data. I have been trying to use the SLOPE function and specifying a range in X and its accompanying Y data...