I have a function defined e.g.
Public Function calc_x(ByVal x As Integer)
...do some stuff
calc_x = x+x
End Function
This function gets called within the excel sheet from a cell lets say (A2), with a "pointer" to A1 which contains a value 20:
content cell A1: "20"
content cell A2: "=calc_c(A1)"
However, everytime I insert new rows or columns in excel (even after row A or after col 2) the function gets recalculated. Is there a way to prevent that?