Untitled

 avatar
unknown
plain_text
2 years ago
262 B
4
Indexable
WhilePrintingRecords;
Shared StringVar FirstPrevFlag := "No";

If InStr({YourField}, "Prev.") > 0 Then
    If FirstPrevFlag = "No" Then
        FirstPrevFlag := "Yes";
        " " + {YourField}
    Else
        {YourField}
    End If
Else
    {YourField}
End If
Editor is loading...
Leave a Comment