So, the problem is this:
I'm using excel4node to create and write on excel. My question is this: Let's say cell (1,1) and (1,2) are two numbers. I would like to programmatically create a third cell that is the sum of both numbers.
Example: if cell (1,1) contains 10 and cell (1,2) contains 20, then cell (1,3) should contain 30 (thanks @BruceWayne)
Also, both numbers are allowed to be modified and the third cell should always change to reflect the sum of the first two. How can i do so programmatically ? Thanks.