Skip to main content
1-Visitor
August 7, 2013
Solved

Problems with excel inputs

  • August 7, 2013
  • 1 reply
  • 5281 views

When I try to put the equation in the space of inputs execel componet it returns me the error as the image attached.

Could someone help me please.

Best answer by ValeryOchkov

See please the attach

1 reply

25-Diamond I
August 7, 2013

I guess the Excel component can't be used the way you try it. Input is meant for reading in the Excel file and Output for extracting selected ranges of that file. Look it up in the help. And while you are at it you may also look if WRITEEXCEL will do what you want.

1-Visitor
August 7, 2013

Hi thank for your time.
I try use WRITEEXCEL with and without the units but the problem keep happen.
I just need export the rang of de F(t) to excel.

Thank for attetion.

Snap2.png

25-Diamond I
August 8, 2013

Please post the worksheet, not just pictures - its hard to sometimes impossible to debug a pic. You attach any file by chosing "Use advanced editor! at the upper right. You then get the option to attach files at the bottom.

I guess that the cause for the error is the use of t as a range variable. So F(t) might look like a vector but it isn't.

Turn t into a vector, One way to do it is:

i:=0,1..Tp/0.1

t[i:=i*0.1

Chances are your first try with the excel component will work that way, too.