This is the data set I have
| Order | Status | Type |
| 1 | | Ship |
| 1 | Closed | Return |
| 1 | Closed | Ship 3PL |
| 1 | Closed | Return 3pl |
| 2 | Closed | Ship |
| 2 | Closed | Return |
| 2 | Closed | Ship 3PL |
| 2 | Closed | Return 3pl |
| 3 | Closed | Ship |
| 3 | Closed | Return |
| 4 | | Ship |
| 4 | Closed | Return |
I would like to be able to add a new column that would count the orders that have all Status "Closed" for the order.
So Order 2 and 3 are the only ones that would be counted.
Order 1 and 4 would not count because there are statuses with nothing.