I have the following formula created
if ((onLastRecord) or Next({data.acctnum}) <>
({data.acctnum})) Then 'STOP' Else ' '
Which puts the the word "STOP" at the end of account number line.
an example of how this works is:
12345
12345
12345
12345
12345 STOP (stop tag is @ the end of the duplicate line)
123456 STOP
What I am trying to accomplish now is to set the STOP tag at the 4th occurrence.
so that if i have a list of the following accounts, the stop tag will be at the 4th occurrence:
12345
12345
12345
12345 STOP
12345
12345 STOP
123456 STOP
if ((onLastRecord) or Next({data.acctnum}) <>
({data.acctnum})) Then 'STOP' Else ' '
Which puts the the word "STOP" at the end of account number line.
an example of how this works is:
12345
12345
12345
12345
12345 STOP (stop tag is @ the end of the duplicate line)
123456 STOP
What I am trying to accomplish now is to set the STOP tag at the 4th occurrence.
so that if i have a list of the following accounts, the stop tag will be at the 4th occurrence:
12345
12345
12345
12345 STOP
12345
12345 STOP
123456 STOP