Hi, I want to use the distance (in columns) between two cells in a custom-written function, approximately like this:
Function foo(x, y)
foo = column(x) - column(y)
End Function
Unfortunately all I could find is how to handle scalars or arrays passed as arguments, I could not find if it’s possible to see where the values come from or any other way to pass cell references. Any hints on this?