Hi,
I have data in a report like below:
| Name | Fruit |
| A | Apple |
| A | Banana |
| B | Orange |
| C | Pear |
| C | Orange |
| D | Banana |
I want to filter out the whole group if a certain value appears once for that group.
In this case filter out whole group if for a Name the fruit is 'Orange'
So the output should be like:
| Name | Fruit |
| A | Apple |
| A | Banana |
| D | Banana |
So, group B is not selected because it has Orange once, similar for C.
Any help is appreciated.
Thanks,
Ishan