Hello,
I'm trying to get something like this to work (simplified for example, I know excel already warns me):
Didn't think it would be too difficult however I can't find the answer. The part that doesn't work is this.. "ActiveWorkbook.CircularReferences.Count > 0" it doesn't evaluate to boolean.
Thanks
-Bart
I'm trying to get something like this to work (simplified for example, I know excel already warns me):
Code:
Sub CircTEST()
If ActiveWorkbook.CircularReferences.Count > 0 Then
MsgBox ("Circ Ref")
Else
MsgBox ("NO Circ Ref")
End If
End Sub
Didn't think it would be too difficult however I can't find the answer. The part that doesn't work is this.. "ActiveWorkbook.CircularReferences.Count > 0" it doesn't evaluate to boolean.
Thanks
-Bart