Monday, November 14, 2011

FMP Script Loop

Go to Record/Request/Page [First]
Loop
    If [field = whatever]
        Omit Record
        If [Get (FoundCount) = 0]
            Exit Loop If [1]
        End If
    Else
        Go to Record/Request/Page [Next; Exit after last]
    End If
End Loop