cancel
Showing results for 
Search instead for 
Did you mean: 

Non repeat a column if a group

Former Member
0 Kudos

HI I would like to print the group which is the order# on each line. Mainly for excel export reasons.

but i want to surpress the order# if it's repeated.

When I make the change on format of the field Common and tick 'supress if duplicated' it's not doing it.

So does this not work if its a group?

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Paul,

Create a formula with this code and use it as the 'Order #' on group:

If OnFirstRecord then {Order#} else

if previous({Order#}) = {Order#} then ""

else

{Order#}


-Abhilash

Answers (0)