Variant does not contain a container

I have a form that goes through an approval process, and lately some of my users have been getting a popup stating “Variant Does Not Contain a Container” when approving. Using the debugger I was able to determine that it was occurring here: Forall c In Conditions

	Result = Evaluate(c, doc_)

				

	If Result(0) = False Then

		AllConditionsAreTrue = False

		Exit Forall

	Else

		AllConditionsAreTrue = True

	End If

	End Forall

Specifically at “If Result(0) = False Then”

I’m at a loss on how to fix this. Help?

Subject: variant does not contain a container

we need to know what you have inside “Conditions”.Could you post previous part of your code ?

Subject: RE: variant does not contain a container

Private Sub satisfyConditions Dim AllConditionsAreTrue As Boolean

	Dim Conditions As Variant

	Dim Result As Variant

	

	Do

		Set workflow_ = workflow_.GetNextStatus

		

		If workflow_.HasConditions Then

			

			Conditions = workflow_.GetConditions

			

			Forall c In Conditions

				Result = Evaluate(c, doc_)

				

				If Result(0) = False Then

					AllConditionsAreTrue = False

					Exit Forall

				Else

					AllConditionsAreTrue = True

				End If

			End Forall

			

			If AllConditionsAreTrue = True Then Exit Do

		Else

			Exit Do

		End If

		

		Call Me.signAndDate

		

	Loop Until workflow_.HasNextStatus = False

End Sub

Subject: variant does not contain a container