Hi,
I am trying to check that the transfer of accounts are in sequential order, an account can below to more than 1 person. The problem comes in that there can be multiple transfers to multiple owners, and I need to check that the open date is after the previous close date. If the close date is blank and the status is 'N' it is open.
I am having trouble when the transfer happens to more than one person and both accounts are open.
IF [Open] < [close]
then 'Pass'
elseif isnull([close])
and [open] > [Row-1:Close]
then 'Pass'
else 'Fail'
endif