Hi Jonathan,
As per my understanding I tried your scenario with the below sample data
Name | Value |
Ramesh | A |
Suresh | A |
Raj | A1 |
Rajiv | A12 |
Rajesh | B |
Arun | B |
Amit | B |
This is the output I got.
Name | Value | UniqueCount |
Amit | B | 0 |
Arun | B | 0 |
Raj | A1 | 1 |
Rajesh | B | 0 |
Rajiv | A12 | 1 |
Ramesh | A | 0 |
Suresh | A | 0 |
To achieve this
1.Create a variable - Count1 : =Count([Value];All)In ([Value])
2.Create another variable - UniqueCount : =If([Count1]=1;1;0)
Use Unique Count variable in your report.
Hope this was what you are looking for.
Regards,
Javed