473,406 Members | 2,619 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Using excel solver in VB.NET

Hi to all,
I want to use the Excel solver in a VB.Net project.

The macro

Sub Makro1Solver()
Application.Run "Solver.xla!Auto_Open"
SolverReset
Worksheets(1).Select
Worksheets(1).Range("B9").Select
SolverOk SetCell:="R9C2", MaxMinVal:=3, ValueOf:="0", ByChange:="R8C2"
SolverSolve
End Sub

works fine when starting manually in Excel.

But a message like (sorry it is in german) "Zielzelle muß eine einzelne
Zelle im aktiven Blatt sein." and "Zielzellen müssen sich in der aktiven
Tabelle befinden." appears when I start the macro from my VB.NET
project. My translation for the messages "Goalcell must be a single cell
in an active sheet" and "Goalcells must locate in the active table".

The function in the cell R9C2 is
"=Z(-8)S-Z(-7)S/(Z(-6)S+(Z(-1)S+273.15))-LN(Z(-2)S*(760/1013.25))"

My VB.NET code is

Dim ExApp As New Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
Dim ExSheet As Microsoft.Office.Interop.Excel.Worksheet

Try
wb = ExApp.Workbooks.Open("E:\Daten\DD-Rechnung.xls")
ExApp.Run("SOLVER.XLA!Auto_Open")

ExApp.DisplayAlerts = True
ExApp.Visible = True
wb.Activate()

ExSheet = ExApp.Worksheets("Tabelle1")
ExSheet.Activate()

ExApp.Run("Tabelle1.Makro1Solver()")

Catch ex As COMException
MessageBox.Show("Error accessing Excel: " + ex.ToString())
Catch ex As Exception
MessageBox.Show("Error: " + ex.ToString())
End Try

And I import in vb.net

Imports Microsoft.Office.Interop
Imports System.Runtime.InteropServices
Imports System.Math

A simple macro which wrote some words in the excelsheet/cell works fine,
only the solver makes problems. Also the goalseek macro in excel works
when starting manually but not when starting from vb.net and has no
error messages. It only does nothing...

I searched for several days/weeks but I couldn't find the solution.

Could someone help me please or give me a hint or has an idea how to solve.

Thanks in advance
Holger
Mar 22 '07 #1
7 14348
What its telling you is that you need to have a reference to worksheet .
You're doing your program outside of VB.Net so, you need to have a reference
to the ei ther running excel application or create a new instance of excel
and then use that reference to run your macro.

"Holger Fitschen" <fi******@tuhh.dewrote in message
news:56*************@mid.dfncis.de...
Hi to all,
I want to use the Excel solver in a VB.Net project.

The macro

Sub Makro1Solver()
Application.Run "Solver.xla!Auto_Open"
SolverReset
Worksheets(1).Select
Worksheets(1).Range("B9").Select
SolverOk SetCell:="R9C2", MaxMinVal:=3, ValueOf:="0", ByChange:="R8C2"
SolverSolve
End Sub

works fine when starting manually in Excel.

But a message like (sorry it is in german) "Zielzelle muß eine einzelne
Zelle im aktiven Blatt sein." and "Zielzellen müssen sich in der aktiven
Tabelle befinden." appears when I start the macro from my VB.NET project.
My translation for the messages "Goalcell must be a single cell in an
active sheet" and "Goalcells must locate in the active table".

The function in the cell R9C2 is
"=Z(-8)S-Z(-7)S/(Z(-6)S+(Z(-1)S+273.15))-LN(Z(-2)S*(760/1013.25))"

My VB.NET code is

Dim ExApp As New Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
Dim ExSheet As Microsoft.Office.Interop.Excel.Worksheet

Try
wb = ExApp.Workbooks.Open("E:\Daten\DD-Rechnung.xls")
ExApp.Run("SOLVER.XLA!Auto_Open")

ExApp.DisplayAlerts = True
ExApp.Visible = True
wb.Activate()

ExSheet = ExApp.Worksheets("Tabelle1")
ExSheet.Activate()

ExApp.Run("Tabelle1.Makro1Solver()")

Catch ex As COMException
MessageBox.Show("Error accessing Excel: " + ex.ToString())
Catch ex As Exception
MessageBox.Show("Error: " + ex.ToString())
End Try

And I import in vb.net

Imports Microsoft.Office.Interop
Imports System.Runtime.InteropServices
Imports System.Math

A simple macro which wrote some words in the excelsheet/cell works fine,
only the solver makes problems. Also the goalseek macro in excel works
when starting manually but not when starting from vb.net and has no error
messages. It only does nothing...

I searched for several days/weeks but I couldn't find the solution.

Could someone help me please or give me a hint or has an idea how to
solve.

Thanks in advance
Holger
Mar 23 '07 #2
I think I don't really understand what you mean.
I made a new instance of Excel with:

Dim ExApp As New Microsoft.Office.Interop.Excel.Application

and then I use a reference to excel, which starts excel and runs simple
macros, but not the solver and not the GoalSeek funktion.

btw I use Visual Studio 1.1, VSTO 2003 and Excel 2003

Could it be, that the solver couldn't read a function in a cell when it
started from external??

Thanks in advance
Holger

Richard T. Edwards schrieb:
What its telling you is that you need to have a reference to worksheet .
You're doing your program outside of VB.Net so, you need to have a
reference to the ei ther running excel application or create a new
instance of excel and then use that reference to run your macro.

"Holger Fitschen" <fi******@tuhh.dewrote in message
news:56*************@mid.dfncis.de...
>Hi to all,
I want to use the Excel solver in a VB.Net project.

The macro

Sub Makro1Solver()
Application.Run "Solver.xla!Auto_Open"
SolverReset
Worksheets(1).Select
Worksheets(1).Range("B9").Select
SolverOk SetCell:="R9C2", MaxMinVal:=3, ValueOf:="0",
ByChange:="R8C2"
SolverSolve
End Sub

works fine when starting manually in Excel.

But a message like (sorry it is in german) "Zielzelle muß eine
einzelne Zelle im aktiven Blatt sein." and "Zielzellen müssen sich in
der aktiven Tabelle befinden." appears when I start the macro from my
VB.NET project. My translation for the messages "Goalcell must be a
single cell in an active sheet" and "Goalcells must locate in the
active table".

The function in the cell R9C2 is
"=Z(-8)S-Z(-7)S/(Z(-6)S+(Z(-1)S+273.15))-LN(Z(-2)S*(760/1013.25))"

My VB.NET code is

Dim ExApp As New Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
Dim ExSheet As Microsoft.Office.Interop.Excel.Worksheet

Try
wb = ExApp.Workbooks.Open("E:\Daten\DD-Rechnung.xls")
ExApp.Run("SOLVER.XLA!Auto_Open")

ExApp.DisplayAlerts = True
ExApp.Visible = True
wb.Activate()

ExSheet = ExApp.Worksheets("Tabelle1")
ExSheet.Activate()

ExApp.Run("Tabelle1.Makro1Solver()")

Catch ex As COMException
MessageBox.Show("Error accessing Excel: " + ex.ToString())
Catch ex As Exception
MessageBox.Show("Error: " + ex.ToString())
End Try

And I import in vb.net

Imports Microsoft.Office.Interop
Imports System.Runtime.InteropServices
Imports System.Math

A simple macro which wrote some words in the excelsheet/cell works
fine, only the solver makes problems. Also the goalseek macro in excel
works when starting manually but not when starting from vb.net and has
no error messages. It only does nothing...

I searched for several days/weeks but I couldn't find the solution.

Could someone help me please or give me a hint or has an idea how to
solve.

Thanks in advance
Holger
Mar 23 '07 #3
btw I use ...Excel 2003
SolverOk SetCell:="R9C2", ...
Hi. Not sure on the German version, but in US versions of Excel, Solver
references need to be in A1 notation. (Starting with Excel 97 I believe)

SolverOk SetCell:="B9", ...

As a side note, I am a little curious on your equation.
Is it working ok?
=Z(-8)S-Z(-7)S/(Z(-6)S ...

It looks to me like it should be:
"=Z*(-8)*S-Z*(-7)*S ...
--
Dana DeLouis
Windows XP & Office 2007
"Holger Fitschen" <fi******@tuhh.dewrote in message
news:46**************@tuhh.de...
>I think I don't really understand what you mean.
I made a new instance of Excel with:

Dim ExApp As New Microsoft.Office.Interop.Excel.Application

and then I use a reference to excel, which starts excel and runs simple
macros, but not the solver and not the GoalSeek funktion.

btw I use Visual Studio 1.1, VSTO 2003 and Excel 2003

Could it be, that the solver couldn't read a function in a cell when it
started from external??

Thanks in advance
Holger

Richard T. Edwards schrieb:
>What its telling you is that you need to have a reference to worksheet .
You're doing your program outside of VB.Net so, you need to have a
reference to the ei ther running excel application or create a new
instance of excel and then use that reference to run your macro.

"Holger Fitschen" <fi******@tuhh.dewrote in message
news:56*************@mid.dfncis.de...
>>Hi to all,
I want to use the Excel solver in a VB.Net project.

The macro

Sub Makro1Solver()
Application.Run "Solver.xla!Auto_Open"
SolverReset
Worksheets(1).Select
Worksheets(1).Range("B9").Select
SolverOk SetCell:="R9C2", MaxMinVal:=3, ValueOf:="0",
ByChange:="R8C2"
SolverSolve
End Sub

works fine when starting manually in Excel.

But a message like (sorry it is in german) "Zielzelle muß eine einzelne
Zelle im aktiven Blatt sein." and "Zielzellen müssen sich in der aktiven
Tabelle befinden." appears when I start the macro from my VB.NET
project. My translation for the messages "Goalcell must be a single cell
in an active sheet" and "Goalcells must locate in the active table".

The function in the cell R9C2 is
"=Z(-8)S-Z(-7)S/(Z(-6)S+(Z(-1)S+273.15))-LN(Z(-2)S*(760/1013.25))"

My VB.NET code is

Dim ExApp As New Microsoft.Office.Interop.Excel.Application
Dim wb As Microsoft.Office.Interop.Excel.Workbook
Dim ExSheet As Microsoft.Office.Interop.Excel.Worksheet

Try
wb = ExApp.Workbooks.Open("E:\Daten\DD-Rechnung.xls")
ExApp.Run("SOLVER.XLA!Auto_Open")

ExApp.DisplayAlerts = True
ExApp.Visible = True
wb.Activate()

ExSheet = ExApp.Worksheets("Tabelle1")
ExSheet.Activate()

ExApp.Run("Tabelle1.Makro1Solver()")

Catch ex As COMException
MessageBox.Show("Error accessing Excel: " + ex.ToString())
Catch ex As Exception
MessageBox.Show("Error: " + ex.ToString())
End Try

And I import in vb.net

Imports Microsoft.Office.Interop
Imports System.Runtime.InteropServices
Imports System.Math

A simple macro which wrote some words in the excelsheet/cell works fine,
only the solver makes problems. Also the goalseek macro in excel works
when starting manually but not when starting from vb.net and has no
error messages. It only does nothing...

I searched for several days/weeks but I couldn't find the solution.

Could someone help me please or give me a hint or has an idea how to
solve.

Thanks in advance
Holger

Mar 23 '07 #4
Hi Dana,
yes, the function works in both notations (A1 and Z$S$)
But how I said, only when I start it manually, not out of vb.net.

I very distressed not to find a solution.....

Dana DeLouis schrieb:
>btw I use ...Excel 2003
SolverOk SetCell:="R9C2", ...

Hi. Not sure on the German version, but in US versions of Excel, Solver
references need to be in A1 notation. (Starting with Excel 97 I believe)

SolverOk SetCell:="B9", ...

As a side note, I am a little curious on your equation.
Is it working ok?
=Z(-8)S-Z(-7)S/(Z(-6)S ...
That means a relativ position to the dependent cell
R9C2 = B9 and Z(-8) = B1 .
This happens automatically when I switched from A1 to Z$S$ notation for
testing several capabilities to solve my problem.
>
It looks to me like it should be:
"=Z*(-8)*S-Z*(-7)*S ...
Mar 23 '07 #5
I've learned that =Z(-8)S is the German equivalent to RC notation =R[-8]C.
I would experiment and switch everything (Worksheet & code) to the
equivalent A1 notation.

--
Dana DeLouis
Windows XP & Office 2007


Mar 23 '07 #6
In my version of Excel 2003 the application addins don't load when Excel is
run as a COM server. But this can be over come by explicitly loading in the
startup routine or by COM reference method. My example uses an addin called
dataline follows:

AddIns("PI-DataLink").Installed = True

This could be your problem also.

John Fors
"Dana DeLouis" <dd******@bellsouth.netwrote in message
news:eH*************@TK2MSFTNGP04.phx.gbl...
I've learned that =Z(-8)S is the German equivalent to RC notation =R[-8]C.
I would experiment and switch everything (Worksheet & code) to the
equivalent A1 notation.

--
Dana DeLouis
Windows XP & Office 2007


Mar 26 '07 #7
Thanks to all,
I solved it by using a VBA subroutine "Worksheet_Change" which monitored
a cell. In this cell I wrote with vb.net a "1" and the sub
"Worksheet_Change" starts the solver.
It not a beautiful code, but it works.

Holger

John J Fors schrieb:
In my version of Excel 2003 the application addins don't load when Excel is
run as a COM server. But this can be over come by explicitly loading in the
startup routine or by COM reference method. My example uses an addin called
dataline follows:

AddIns("PI-DataLink").Installed = True

This could be your problem also.

John Fors
"Dana DeLouis" <dd******@bellsouth.netwrote in message
news:eH*************@TK2MSFTNGP04.phx.gbl...
>I've learned that =Z(-8)S is the German equivalent to RC notation =R[-8]C.
I would experiment and switch everything (Worksheet & code) to the
equivalent A1 notation.

--
Dana DeLouis
Windows XP & Office 2007


Mar 28 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Dan | last post by:
Hello, I am trying to read and write to an Excel file via my Java applet. I have done so successfully on several simple Excel files that simply had data cells without many complicated equations...
1
by: Aaron | last post by:
I am trying to write a Python script file which analyses data in an iterative manner. During each iteration, I wish to utilise the Solver function in Excel to perform some constrained, non-linear...
0
by: Josh Golden | last post by:
has anyone every used the solver add-in for Excel? it allows you to solve linear and non-linear problems given certain conditions. I was wondering if something like this exists already in .NET? ...
3
by: Mr.Doubt | last post by:
I'm trying to run a Excel macro, which uses SOLVER.XLA Add-In, in VB.NET application. When the macro is executed I get the following error message "Solver: An unexpected internal error occured,...
0
by: engsolnorm | last post by:
A co-worker and I want to increase our knowledge of Python. I have a tiny bit of exposure to python. He has none, but has wide experience with C, C++, NET, C#, etc. We agreed we'd do a Sudoku...
0
by: akantrowitz | last post by:
Can you replicate the Excel solver functionality from within Csharp? thks, ak
2
by: tristan.chaplin | last post by:
Is it possible to use the Excel Equation Solver in an Access Database, ie call it from vba code? Thanks, Tristan
1
by: Mike Heywood | last post by:
Hi, I am currently trying to automate a process that I have been studying the manual results from for a while. The process simply identifies events that meet certain criteria and at the moment...
3
by: akristensen | last post by:
I am new to this site, so be patient if I do not ask the question correctly. Current Target Platform: Browser: MS IE, script language: Javascript (will use VBScript, but JS is preferred), External...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.