I am trying to remove the function call after a value is returned.
for example:
function testFunc(x as integer)
testfunc = x
end function
after calling this function I would like the cell value where the function was called to equal x and not =testFunc(x). Is this possible or do the limits placed on functions restrict this type of action