Hi - I have a data set with customers and products (see picture for example) for a beginning and ending period. I'd like to identify certain characteristics including whether it is a new customer, new product, lost customer or lost product. Looking for a simple way to achieve that.
| Customer | Product | Qt End | Qt Beg | New Customer | New Product | Discontinued Product | Lost Customer |
| A | 1 | 1 | – | | x | | |
| A | 2 | 1 | 1 | | | | |
| A | 3 | – | 1 | | | x | |
| B | 2 | 1 | – | | | | |
| B | 3 | – | 1 | | | x | |
| C | 2 | 1 | – | x | | | |
| D | 2 | – | 1 | | | | x |
Thanks in advance for the help