Quick question that might help clear up some confusion for me. I'm using a custom function that I wrote that is not always updating. The function itself is pretty straight forward, but difficult to explain outside of the context of the file it is being used in. However, below is an example of how the spreadsheet is set up in a very simplified way.
Question is ... When I change cell A1, should B2 update?
My understanding is yes, but this the is only thing I can think of that would be causing my problem.
Thanks much in advance
Function Test(TestValue)
Test = TestValue * TestValue
End Function
Spreadsheet
A1: "5"
A2: "=A1"
B2: "=TestValue(A2)"
Question is ... When I change cell A1, should B2 update?
My understanding is yes, but this the is only thing I can think of that would be causing my problem.
Thanks much in advance
Function Test(TestValue)
Test = TestValue * TestValue
End Function
Spreadsheet
A1: "5"
A2: "=A1"
B2: "=TestValue(A2)"