Hi all,
Currently my data is like this :
Activity | Start_Date | End_Date |
Kayaking | 1/09/17 | 2/09/17 |
Kayaking | 1/09/17 | 2/09/17 |
Running | 3/09/17 | 3/09/17 |
I want to alter it so that if the same activity, in this case "Kayaking" starts on the same start date and end date, it'll only take one row of the data instead of both.
So end result will be :
Activity | Start_Date | End_Date |
Kayaking | 1/09/17 | 2/09/17 |
Running | 3/09/17 | 3/09/17 |
Thanks!