I have the following formula to work out if a record is a duplicate, however i only want both records when they match.
If previous({student.Student Code}) = {student.Student Code} then
"duplicate"
else
"not duplicate"
so at the moment i get the following output
Student code Name
S11111 King not a duplicate
S11111 Smith duplicate
when i suppress based on the formula it will only display the record marked as a duplicate however i need to return both records.
any ideas greatfully accepted
If previous({student.Student Code}) = {student.Student Code} then
"duplicate"
else
"not duplicate"
so at the moment i get the following output
Student code Name
S11111 King not a duplicate
S11111 Smith duplicate
when i suppress based on the formula it will only display the record marked as a duplicate however i need to return both records.
any ideas greatfully accepted