I want to write a function Foo that can be used in a formula to return the contents of a cell above the cell it is used in.
E.g., if in cell B2, I write =Foo() I want to get the contents of B1.
I know I can write =B1 directly. Obviously, I'm simplifying the case here.
So, how does this function look like.
More precisely, I want to (also) be able to use this function from other functions (e.g. a Bar(factor) Function that multiplies the cell above, so I can write =Bar(2))
=Foo(B1)and=Bar(B1,2)? Hard-coding a relative cell reference is like asking for trouble... – Jean-François Corbett May 25 '12 at 12:25