Referring to adjacent cells in OpenOffice.org BASIC -
I am trying to calculate F-score (formula 2 * a * b / (a + b) Using OpenOffice.org Calc, and for the previous two cells in the same line, would require one more B.
My problem is that when I try to define a function in OpenOffice.org Basic I get an error ADDRESS and indirect methods have not been defined.
How would you define a function, when adjacent cells can be referenced on the cell?
Edit: A little explanation I'm actually looking for in a way that if a function is run in cell C1, then if a function (let's call it F) is done automatically by B1 and A1 Receives value. In fact, returning results should be returned without specifying the calling = F () in C1 without 1A and B1.
In addition, if it can be run for a whole column, then it will be very helpful.
cell value:
A1 1
b 1 2
C1 = (2 * A1 * B1) / (A1 + B1)
Everything goes in C1, in which = sign also included The = symbol specifies the contents of the cell as a formula.
Comments
Post a Comment