Forum Discussion

dendar's avatar
dendar
New Contributor III
6 months ago

Conditional confirmation rule with annotation evaluation

Hello Community, I have a puzzler for you.  My confirmation rule is set to evaluate a data intersection.  If the intersection is greater than zero, then an annotation is required in another interse...
  • TheJonG's avatar
    6 months ago

    Hi - can you try:

    Dim dcAnnotation As String = api.Data.GetDataCellex("MemberFilter").DataCellAnnotation
    
    If dcAnnotation = "" Then
     'Fail
    Else
     'Pass
    End If

    You could also use this to log the annotation to see if it is returning something which may help troubleshoot.