I have a dataset with date values like this.
Date Id
10/1/2013 3444
87873
1243
35473
7363
8335
10/2/2013 4783
3355
4544
94453
33554
What I am trying to do is automatically populate the date values until the next date value is encountered, Oct 1 2013 should be populated until Oct 2 2013 is encountered. The final dataset should look like this
Date Id
10/1/2013 3444
10/1/2013 87873
10/1/2013 1243
10/1/2013 35473
10/1/2013 7363
10/1/2013 8335
10/2/2013 4783
10/2/2013 3355
10/2/2013 4544
10/2/2013 94453
10/2/2013 33554
Any help is appreciated.