Hi all,
I have some data that has many information including personal id and a start year. The personal id can be repeated throughout the data, but per personal id, there is only a unique start year, such as this:
Data
| Personal ID | Start Year |
| 0001 | 2010 |
| 0001 | 2011 |
| 0002 | 2012 |
| 0002 | 2013 |
I am trying to combine the data so the personal id is not repeated, and I get a range of years per personal id, so end up with something like this:
Output
| Personal ID | Years |
| 0001 | 2010-2011 |
| 0002 | 2012-2013 |
Anyone know how to do this? Is it possible?? Thanks in advance!