+ Reply to Thread
Results 1 to 32 of 32

Using Linest in VBA

  1. #1
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Using Linest in VBA

    I have a sheet which on one tab, has data generated by various formulas on the same tab. The calculations per row result in 10 groups of two columns (X,Y coords). At the top of the sheet, the Linest function is used to convert the generated X,Y data into the coefficients of third degree polynomials. The sheet can sometimes run to 5000 rows and 50 columns.

    What I am looking for is VBA code which would operate a bit like the Σ+ button on HP programmable calculators by taking the generated data per row and iterating while saving the generated row data for the calculation of the coefficients. Instead of a sheet with 5000 rows I would have VBA code which would iterate 5000 times and generate the data in a way suitable for Linest.

    In its present form, all the data needed is generated per row with each successive row having a starting value increased by 5mm (that is the only difference in the rows)

    Does anyone have any experience with this?

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using Linest in VBA

    Please upload a workbook or a representative cut down copy, anonymised if necessary. It is always easier to advise if we can see your request in its context.

    Show a before and after situation with manually calculated results, explaining which information is data and which is results, and if it's not blindingly obvious how you have arrived at your results some explanatory notes as well.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    From the help page:
    "To attach a file to a new post, simply click the [Browse] button at the bottom of the post composition page, and locate the file that you want to attach from your local hard drive."

    I can't find this "browse" button. There is an "attachments" button which causes my screen to refresh but nothing else! what am I missing?

  4. #4
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Using Linest in VBA

    Attach a sample workbook (not a picture or pasted copy). Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
    Click the top left button to select your file.
    Click the Upload button on the right.
    Close the attachments window and click Submit Reply.
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,237

    Re: Using Linest in VBA

    Quote Originally Posted by twa14 View Post
    I can't find this "browse" button. There is an "attachments" button which causes my screen to refresh but nothing else! what am I missing?
    Unfortunately the attachment icon doesn't work at the moment, so to attach an Excel file you have to do the following: just before posting, scroll down to Go Advanced and then scroll down to Manage Attachments. Now follow the instructions at the top of that screen.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  6. #6
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Hi and again thanks for the information. The sheet contains the first 150 rows of data used by Linest.
    The total length of the clothoid is 34m (Column D) but can be more or less, thus Increasing\decreasing the row count
    needed for the calculation. The data required for the Linest calculation are the X,Y coords in the orange columns.
    What I would like to do is have VBA carry ou the complete calculation, no need then for this tab.
    The complete spreadsheet has more than 10 tabs all of which are linked but have different functions\calculations.
    The clothoid starts at (0.000, 0.000. The count is backwards from 34m. This was necessary as initially I also used this as a lookup table.
    The lookup functions required decreasing data.
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Thanks for the info,problem solved.

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,237

    Re: Using Linest in VBA

    Thanks for letting us know. Please share the solution here for the benefit of all.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

  9. #9
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    To be clear only the upload problem is solved, the original question remains unanswered for the moment

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,237

    Re: Using Linest in VBA

    Thanks for the clarification.

  11. #11
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using Linest in VBA

    Would you remind us of the Q.

    So far I understand the requirement is to abolish the sheet altogether and generate the Q&R column data automatically.

    The process would be to create a VBA array by looping through x iterations and using the formula you currently have in the sheet to populate the array in VBA. You mention that column d increase by 5mm so that could be used in the loop counter but that's not the only value that changes. Are all the other precedents to Q&R ultimately dependent solely on column D. I've not checked them all.

    Does the above also apply to the other nine pairs of columns AG:AH etc....?

    What's the eventual output. Is that 20 columns of data (10 pairs of data)?

  12. #12
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Yes, all the rows calculate exactly the same with the exception of the numbers in column "D" which reduces each time by 5mm. The idea is to generate offsets (the orange columns) which are at various distances from the main string. The distances are given in the light brown columns under "C\way" width. The idea is to generate coordinates along the master string which appear in the first orange columns "Q" and "R". Then swing 90 degrees to both sides and generate coordinates at right angles to the master string at distances given by the "Cway width". Once the offsets have been generated the data can be fitted to a 3rd order polynomial which approximates the Clothoid. This whole procedure is for shuttering a bridge deck. Its not possible to make a clothoid parallel with another clothoid.

  13. #13
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Using Linest in VBA

    How are the Cway width for the 10 pairs of coordinates arrived at. Are they able to be calculated in some way or are must they be preset as constants which will be input by the user before runtime?

  14. #14
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    I posted a reply on 31/12/18 but it seems to have disappeared (or is it in moderation)?

    My post was to clarify the C\way width column. These widths are offsets from the master string on the radial cross section. They are fixed widths and represent locations which define the shape of the cross section. The coordinates calculated for these points can be used in constructing the shuttering for the bridge deck. Going back to my first post, the Linest command uses data on the sheet itself (the orange columns). This data is generated on the sheet. I do not see a way within VBA to have this data generated so that Linest can use the generated data, also within VBA. My reference to the HP programmable calculator Σ+ button was to show an example of how Linest might possibly work.
    It would be easy to generate the data with VBA if Linest would absorb the data line by line. I don't know if this is possible.
    Last edited by twa14; 01-01-2019 at 06:53 AM.

  15. #15
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    81,237

    Re: Using Linest in VBA

    FYI - There are no posts in moderation and there is no post by you listed at all for yesterday - perhaps you composed the post, but left the page before saving it?

  16. #16
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Thanks for letting me know, obviously gone to byte heaven! Happy new year!

  17. #17
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,843

    Re: Using Linest in VBA

    Your spreadsheet is pretty large with a lot happening in it, and I feel like there is a lot of "extra" stuff happening here that is preventing us from focusing in on your exact question. I think a simpler spreadsheet that removes some of the distractions related to the clothoid and focuses on the actual programming question might help. For now, I am ignoring your sample spreadsheet.

    I do not see a way within VBA to have this data generated so that Linest can use the generated data, also within VBA.
    I do not understand what difficulty you are having here. The inputs to the LINEST() function when called from VBA should be simple VBA arrays. You have not provided any sample VBA code showing how you are trying to generate these arrays, so it is difficult for us to know what is going wrong. Steps I would expect:

    1) Read x and y arrays from spreadsheet and store in VBA arrays (if I assume the data are in columns, I would expect two vertical nx1 VBA arrays).
    2) (My instinct thinks that this might be the problem) xvalues^{1,2,3} is perfectly good spreadsheet syntax, but VBA has no idea what this means. You need a loop that will translate this syntax into something VBA can use to generate the full known_x array.
    3) Call Linest application.linest(yvalues,xvalues,true,false) and store results in a new VBA array.
    4) error checking and whatever needs to happen after performing the regression.

    Untested pseudocode
    Please Login or Register  to view this content.
    My guess is that step 2 is where the problem lies, in that you have previously assumed that you could use the same Excel syntax in VBA. The key is to get VBA appropriate syntax for generating the input arrays.

    Does that help?
    Last edited by MrShorty; 01-01-2019 at 12:30 PM.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  18. #18
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Hi and thanks for your input. I am probably trying to do something that is not possible. Each row of the sample spreadsheet generates coordinates firstly along the main axis or master string and thereafter at right angles to this master string ±90 degrees left and right to create offset strings at fixed distances from the master string (orange columns) . Linest then fits third order polynomials to the XY data in the orange columns. In my first post i referred to the Σ+ key on HP programmable calculators which take keyed in data and accumulates this data in 6 inbuilt registers until the last line of data is entered. The regression calculation can then be carried out on the accumulated data which still takes up only 6 registers. I was hoping to mimic this behaviour with linest by creating code to calculate and read the data row by row, within VBA and accumulate this data in Linest, in this way ultimately to get the regression result. There is no point in recreating all the data on the sheet within VBA, either it can be recreated within VBA, row by row or it cannot. If not then my question is also answered and I am trying to do something that is not possible.
    Last edited by twa14; 01-01-2019 at 03:08 PM.

  19. #19
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    The problem is not that what you want may not be possible; it surely is. The problem is that you posted an example with a lot of irrelevant clutter and no one can tell what you're trying to do.

    A lucid, minimal example, sans clutter, would help. You can add the clutter back later.
    Entia non sunt multiplicanda sine necessitate

  20. #20
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Apologies, I have fallen into the trap of assuming that a sheet that I have been looking at for at least 5 years is obvious to all. I have now cut it down to 25 rows and calculations for 2 x 2 columns of xy data. The first 2 columns of data are Q and R which contain XY data generated by columns A to P and are exact coordinates on the clothoid master string. The following two columns of data are AG and AH which contain data generated by the columns S to AF and are coordinates offset 2864mm at 90 degrees to the master string. The XY data is all that needs to be looked at. Linest uses this data to generate coefficients for a third degree polynomial which approximates the shape of the clothoid. It uses the "orange" data to do this. The data is generated row by row. The length is given in cell D5 as 34m. This is reduced by 5mm consecutively so each row differs by a small amount. This is to try to get the coefficients of the polynomials as accurately as possible.

    Linest needs a range of data for the calculation, my question is can linest be fed this data row by row for many iterations using VBA?
    Attached Files Attached Files

  21. #21
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    So you have one LINEST formula that does a third-order polynomial regression of col R onto col Q, and another that does col AH onto col AG. Why is that not sufficient? Why do you need VBA? Because the number of rows can vary? Something else?

  22. #22
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Depending on the length of the clothoid, the sheet can become huge if I stick to 5mm intervals. I Thought that if I could switch the whole process over to VBA I could get rid of the sheet completely. On the sheet the linest calculation is carried out at rows O2-R2 using data from Q5 to R25 and AE2 to AH2 using data from AG5 to AH25

  23. #23
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,843

    Re: Using Linest in VBA

    It still feels like we are trying to pin down exactly what part of this you need help with. How much of your question is about calling LINEST() from VBA, and how much is all of the calculations that come before calling LINEST()? This
    I Thought that if I could switch the whole process over to VBA I could get rid of the sheet completely.
    sounds to me like your question is more about translating those Excel functions into VBA. Outlining the process that I would expect to see:

    1) I would expect to translate the A -> Q:R calculations into VBA. I have not looked at this sequence of calculations in detail, but it looks like basic functions and operations that should have VBA equivalents. (Also translate S -> AG:AH into VBA).
    2) Nest the sequence of calculations from step 1 into a loop that will accumulate the results into suitable arrays. The R (known_y) calculation will accumulate into a 1D (either nx1 or 1xn) array, while the Q (known_x) calculation will accumulate into a 2D array (either nx3 or 3xn). Similar for the S -> AG:AH sequence.
    3) As before, once you have appropriate arrays containing the known_y and known_x values, you can call LINEST() to get the polynomial coefficients.

    I have not yet looked at the details, so I have not worked out specific coding, yet. Which part of that sequence of steps do you expect to have trouble or questions with?

  24. #24
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    My understanding is this. Columns A/B/C/D/F columns are your input data; everything else is calculated from that.

    A
    B
    C
    D
    E
    F
    4
    E
    N
    brg
    L
    Ch
    Lvl
    5
    0.000
    0.000
    278.2891
    34.000
    83.816
    15.297
    6
    0.000
    0.000
    278.2891
    33.995
    83.811
    15.297
    7
    0.000
    0.000
    278.2891
    33.990
    83.806
    15.297
    8
    0.000
    0.000
    278.2891
    33.985
    83.801
    15.297
    9
    0.000
    0.000
    278.2891
    33.980
    83.796
    15.297
    10
    0.000
    0.000
    278.2891
    33.975
    83.791
    15.297
    11
    0.000
    0.000
    278.2891
    33.970
    83.786
    15.297
    12
    0.000
    0.000
    278.2891
    33.965
    83.781
    15.297
    13
    0.000
    0.000
    278.2891
    33.960
    83.776
    15.297
    14
    0.000
    0.000
    278.2891
    33.955
    83.771
    15.297
    15
    0.000
    0.000
    278.2891
    33.950
    83.766
    15.297
    16
    0.000
    0.000
    278.2891
    33.945
    83.761
    15.297
    17
    0.000
    0.000
    278.2891
    33.940
    83.756
    15.297
    18
    0.000
    0.000
    278.2891
    33.935
    83.751
    15.297
    19
    0.000
    0.000
    278.2891
    33.930
    83.746
    15.297
    20
    0.000
    0.000
    278.2891
    33.925
    83.741
    15.297
    21
    0.000
    0.000
    278.2891
    33.920
    83.736
    15.297
    22
    0.000
    0.000
    278.2891
    33.915
    83.731
    15.297
    23
    0.000
    0.000
    278.2891
    33.910
    83.726
    15.297
    24
    0.000
    0.000
    278.2891
    33.905
    83.721
    15.297
    25
    0.000
    0.000
    278.2891
    33.900
    83.716
    15.298


    Everything else is calculated from that.

    A user-defined function could accept the data in those columns, replace the calculations in all of those other columns, and spit out the coefficients of the regression -- or whatever. is that correct?

    If so, it would be straightforward, if a little tedious, to code.

    If that's indeed correct, my suggestion is that you post in the commercial services column, and offer whatever you think three or four hours of time is worth. I don't post there, but someone could knock this out without difficulty once they manage to get you to be a little more concise in your explanations.
    Last edited by shg; 01-01-2019 at 09:23 PM.

  25. #25
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Again thanks for the feedback and sorry for the confusion.

    Columns A to P contain formulas or constants which result in columns Q+R. This Q:R data range is then used by Linest to produce coefficients in cells O2:R2

    Columns S to AC contain formulas or constants which result in columns AG:AH. This AG:AH data range is then used by Linest to produce coefficients in cells AE2:AH2

    The row calculations differ only in the length given in cells D5:D25 which here, reduce by a constant 5mm per row

    When I use Linest on the sheet I have to provide it with a range of cells which on this sheet can be found in the orange columns. I can easily generate this data in VBA and produce the orange columns as an iteration row by row. The question is, can I get Linest to accept and accumulate for calculation, row by row data instead of as a complete range, as on the sheet. By "accumulation" i mean that the data is generated once,saved, then updated with data from the second row, third row etc. No giant matrix would be produced. HP calculators work this way which was the basis for my original question

    Can Linest accept and accumulate row by row data instead of the range that normally must be specified?

  26. #26
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    If your question is, can you regress a range say, 6 rows at a time, of course; that can easily be done with formulas.

    I'm bowing out of this thread; good luck.

  27. #27
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,843

    Re: Using Linest in VBA

    No, LINEST() cannot do regressions that way. LINEST() works on the full data set at once.

    It has been a long time since I used one of those calculators for regressions. As I recall, those calculators worked by updating and storing values for sumx, sumy, sum(x^2), sum(y^2), (sumx)^2, etc. with each press of the "add data" button. Then, when you requested the slope and intercept, it knew how to calculate slope and intercept from those various summations (you should be able to find those formulas from a good stats text or internet tutorial). While LINEST() cannot work this way, it should be fairly straightforward to create some variables to store these summations and then compute slopes and intercept at the end.

    The main potential disadvantage I see to doing it this way is that this kind of algorithm seems like it will be more susceptible to floating point and other numerical instability errors. Microsoft has tried to follow best practices in programming the LINEST() function to use more stable algorithms that are less prone to floating point errors. I don't know what advantages you are expecting from this kind of "point by point" algorithm or the disadvantages you expect from using LINEST(). Sometimes, this is the kind of programming decision we must make. I guess I would suggest that you be careful here. You may be able to find a way that reduces memory storage requirements (in a day when memory is almost never a limiting factor for this kind of calculation) but that is more prone to numeric errors. Making this kind of judgement call is beyond my programming expertise, but it may be important to making this programming decision.

  28. #28
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Thanks for your help. Even though I am not a contributor to the site, i do look in quite often and came across many of your post's, especially those with anything to do with coordinates. As a result I have a "SHG" map in my computer which contain many of your supplied spreadsheet solutions (all of which are extremely useful). Someone asked you once for help with a coordinate rotation I think and you replied that you had worked it out but it needed to use Quaternions. You did not publish the sheet as the person who asked the question had solved the problem using CAD software. I was always intrigued by this sheet and would love to see it if possible (I can feel the moderator breathing down my neck as I write this)

  29. #29
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    This ?
    Attached Files Attached Files
    Last edited by shg; 01-02-2019 at 02:02 PM.

  30. #30
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Using Linest in VBA

    This is what I meant by incremental regression:

    A
    B
    C
    D
    E
    F
    G
    H
    1
    x
    y
    x^3
    x^2
    x
    b
    2
    65
    91
    3
    37
    91
    4
    91
    2
    5
    60
    93
    6
    27
    71
    7
    94
    52
    0.00128
    -0.27152
    16.80335
    -214.75058
    D7:G7: {=LINEST(B2:B7, A2:A7 ^{1,2,3})}
    8
    62
    66
    0.00214
    -0.41285
    23.55138
    -311.87741
    9
    51
    4
    -0.00366
    0.64761
    -34.81011
    607.82755
    10
    88
    32
    -0.00254
    0.45323
    -24.65749
    452.69293
    11
    89
    63
    -0.00224
    0.42030
    -24.16734
    459.01487
    12
    3
    79
    -0.00149
    0.23984
    -10.13116
    106.79080

  31. #31
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Thats the one! many thanks, this will tie me up for months! I can't wait!

  32. #32
    Registered User
    Join Date
    12-15-2017
    Location
    Holland
    MS-Off Ver
    2003
    Posts
    21

    Re: Using Linest in VBA

    Thanks for the info, I figured that I was asking too much. I take your points also on the possible error problems. I may still have a go at just using the regression equations outside of Linest and see how it works out, time is as usual the biggest problem.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [linest] Whu LINEST can't the precise parameter of each variable?
    By valuex in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-19-2015, 12:12 PM
  2. [SOLVED] Linest Function - Unable to get LinEst property of the WorksheetFunction class
    By fbs13 in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 07-25-2013, 09:55 AM
  3. LINEST Help
    By mperata in forum Excel General
    Replies: 2
    Last Post: 05-10-2012, 11:20 PM
  4. Linest
    By andyking1984 in forum Excel General
    Replies: 1
    Last Post: 10-19-2009, 03:03 PM
  5. Value of LINEST
    By aner1755 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 03-09-2009, 04:27 AM
  6. Linest
    By soulwind in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-08-2007, 03:48 PM
  7. [SOLVED] LINEST()
    By Bove Farm in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-29-2006, 01:00 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1