From: Allan_Urban on 25 Sep 2009 05:53 Hi all Im in a bit of trouble here. I need to do a OLS regression and i recorded a macro using the Regression from the VBA Tool Pack. But whenever i run it, I get the following error: Run-time error '1004': Method 'Run' of object '_Application' failed the code looks as follows: Application.Run "ATPVBAEN.XLAM!Regress", ActiveSheet.Range("$B$2:$B$60") ActiveSheet.Range ("$A$2:$A$60"), False, False, , ActiveSheet.Range("$D$8") _ , False, False, False, False, , False I have no idea how to fix it, so I hope someone is able to help me. Using 2007 btw.
From: Jacob Skaria on 25 Sep 2009 06:07 Allan, check out the below link from Microsoft http://support.microsoft.com/kb/192642 -- If this post helps click Yes --------------- Jacob Skaria "Allan_Urban" wrote: > Hi all > > Im in a bit of trouble here. I need to do a OLS regression and i recorded a > macro using the Regression from the VBA Tool Pack. > > But whenever i run it, I get the following error: > > Run-time error '1004': > Method 'Run' of object '_Application' failed > > the code looks as follows: > Application.Run "ATPVBAEN.XLAM!Regress", ActiveSheet.Range("$B$2:$B$60") > ActiveSheet.Range ("$A$2:$A$60"), False, False, , > ActiveSheet.Range("$D$8") _ > , False, False, False, False, , False > > I have no idea how to fix it, so I hope someone is able to help me. > Using 2007 btw.
From: Allan_Urban on 25 Sep 2009 06:13 Yeah, already tried that and it doesn't fix the problem. Instead i get another error: Analysis Toolpak - VBA.htm could not be found. Check the spelling of the file name, and verify that the file location is correct. "Jacob Skaria" wrote: > Allan, check out the below link from Microsoft > > http://support.microsoft.com/kb/192642 > -- > If this post helps click Yes > --------------- > Jacob Skaria > > > "Allan_Urban" wrote: > > > Hi all > > > > Im in a bit of trouble here. I need to do a OLS regression and i recorded a > > macro using the Regression from the VBA Tool Pack. > > > > But whenever i run it, I get the following error: > > > > Run-time error '1004': > > Method 'Run' of object '_Application' failed > > > > the code looks as follows: > > Application.Run "ATPVBAEN.XLAM!Regress", ActiveSheet.Range("$B$2:$B$60") > > ActiveSheet.Range ("$A$2:$A$60"), False, False, , > > ActiveSheet.Range("$D$8") _ > > , False, False, False, False, , False > > > > I have no idea how to fix it, so I hope someone is able to help me. > > Using 2007 btw.
From: Jacob Skaria on 25 Sep 2009 06:55 Try copy paste the below code. Also make sure you have loaded Analysis ToolPak - VBA http://office.microsoft.com/en-us/excel/HP100215691033.aspx Application.Run "ATPVBAEN.XLAM!Regress", _ ActiveSheet.Range("$B$2:$B$60"), _ ActiveSheet.Range("$A$2:$A$60"), _ False, False, , ActiveSheet.Range("$D$8"), _ False, False, False, False, , False If this post helps click Yes --------------- Jacob Skaria "Allan_Urban" wrote: > Yeah, already tried that and it doesn't fix the problem. Instead i get > another error: > > Analysis Toolpak - VBA.htm could not be found. Check the spelling of the > file name, and verify that the file location is correct. > > "Jacob Skaria" wrote: > > > Allan, check out the below link from Microsoft > > > > http://support.microsoft.com/kb/192642 > > -- > > If this post helps click Yes > > --------------- > > Jacob Skaria > > > > > > "Allan_Urban" wrote: > > > > > Hi all > > > > > > Im in a bit of trouble here. I need to do a OLS regression and i recorded a > > > macro using the Regression from the VBA Tool Pack. > > > > > > But whenever i run it, I get the following error: > > > > > > Run-time error '1004': > > > Method 'Run' of object '_Application' failed > > > > > > the code looks as follows: > > > Application.Run "ATPVBAEN.XLAM!Regress", ActiveSheet.Range("$B$2:$B$60") > > > ActiveSheet.Range ("$A$2:$A$60"), False, False, , > > > ActiveSheet.Range("$D$8") _ > > > , False, False, False, False, , False > > > > > > I have no idea how to fix it, so I hope someone is able to help me. > > > Using 2007 btw.
From: Allan_Urban on 25 Sep 2009 07:52 Works like a charm! Thank you very much.
|
Next
|
Last
Pages: 1 2 Prev: External Data Next: Make protected hidden row & column headers appear and rehide based |