This should be fairly simple and thanks in advance. I have a unique ID column and a start column populated with integers. I want to create a new column populated with the minimum start date for each unique ID. example follows:
ID START
1 23
1 24
1 34
2 12
2 11
and what i want
ID START minStart
1 23 23
1 24 23
1 34 23
2 12 11
2 11 11