Post Reply 
spreadsheet app
04-30-2014, 12:08 AM
Post: #1
spreadsheet app
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
Find all posts by this user
Quote this message in a reply
04-30-2014, 01:44 PM
Post: #2
RE: spreadsheet app
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.

TW

Although I work for HP, the views and opinions I post here are my own.
Find all posts by this user
Quote this message in a reply
05-01-2014, 04:42 PM
Post: #3
RE: spreadsheet app
than you tim

Smile
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)