View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Beavoid Beavoid is offline
external usenet poster
 
Posts: 8
Default How to send a variable from a VB Module to an excel spreadshee

Here is a snippet of what I am trying, with no results so far (no errors
either), but that could be because I haven't yet translated all of the rest
of the code:

Function BearingOutputs() As Double
Worksheets("Outputs").Range("Theta").Value = theta_eff
Worksheets("Outputs").Range("EccentricityRatio").V alue = ecc
Worksheets("Outputs").Range("AttitudeAngle").Value = att

Where Outputs is the name of the Excel worksheet tab within the file (should
it be the filename, instead?). Do I have to place anything else in the
function call?

Also, do I have to do anything to the Theta Excel cell in order to make it
take the sent variable value?

Thanks for the help!

B

"Dave Peterson" wrote:

worksheets("somesheetnamehere").range("theta").val ue = theta_eff

is one way.

Beavoid wrote:

Could someone post the solution of how to send a variable, theta_eff, to an
Excel cell named Theta?

Thanks!

B


--

Dave Peterson