D
Dean Meyer
If a UDF reads a cell that's part of circularity, then even if it
doesn't use the value (even if values converge or don't change), the
"Calculate" flag never goes away. I'm guessing the UDF cell always
appears dirty.
Try this:
A1: "=B1"
B1: "=TestUDF(A1)"
Public Function TestUDF(InRange As Range) As Variant
Dim TestDouble As Double
TestDouble = InRange.Value
TestUDF = 1
End Function
I'm in XL2003. In manual calc mode. I press [CTRL-ALT-SHIFT-F9].
The "Calculate" flag won't go away.
Am I doing something wrong? Is there a work-around?
--Dean
doesn't use the value (even if values converge or don't change), the
"Calculate" flag never goes away. I'm guessing the UDF cell always
appears dirty.
Try this:
A1: "=B1"
B1: "=TestUDF(A1)"
Public Function TestUDF(InRange As Range) As Variant
Dim TestDouble As Double
TestDouble = InRange.Value
TestUDF = 1
End Function
I'm in XL2003. In manual calc mode. I press [CTRL-ALT-SHIFT-F9].
The "Calculate" flag won't go away.
Am I doing something wrong? Is there a work-around?
--Dean