HP Forums

Full Version: spreadsheet app
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sorry for my English
I'm trying to make a program app based on the spreadsheet
when I try to get equations from within the program, these are evaluated correctly, but the cell It does not keep the equation.
How I can get the cell keeps its equations?

Code:

EXPORT spreadsheet ()
BEGIN
END;
START ()
BEGIN
A1:=12;
A2:=7;
B2:=A1+A2;
END;

the program is evaluated correctly, but if I change the values ​​of the equation spreadsheet is not re-evaluate
You are evaluating your expression, and storing the result of the formula into B2. You need to store the formula into the cell - not the result.

Use the ' ' marks to surround your expression to quote the formula.
than you tim

Smile
Reference URL's