I have the same property with different events / statues attached to them. When a certain status is met, I want to filter out all but one event type.
| Name | Event Type | Status |
| 18 ABC Street | 1 | A |
| 18 ABC Street | 2 | |
| 18 ABC Street | 2 | |
| 18 ABC Street | 2 | |
| 18 ABC Street | 3 | |
| 18 ABC Street | 4 | |
| 18 ABC Street | 5 | |
When Status A is recorded, I want to filter out all Event Types except type 5. This would give me the output:
| Name | Event Type | Status |
| 18 ABC Street | 5 | |
Thanks