Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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))

share|improve this question
Why would you want to do this and not, for example, =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

1 Answer

up vote 1 down vote accepted

This in general a bad idea because you will have to make the function volatile, with knock-on effects on calculation etc.

Public Function Foo() As Variant
    Application.Volatile
    Foo = Application.Caller.Offset(-1, 0)
End Function
share|improve this answer
Thanks, maybe you can help with this one as well?: stackoverflow.com/questions/10758120/… – IttayD May 25 '12 at 16:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.