I have a list that i am trying to consolodate.
In colA i have an id-number. In colB i have hours worked.
What i want to do is consolodate the list such that i have one row for each "id" and in column B i want the total hours worked for that "id".
So my problem is i have a list like this
ID Hours worked
11 4.5
11 4.0
11 1.0
12 8.0
13 4.0
14 1.0
14 3.0
14 4.0
14 5.0
15 8.0
What i want is to consolodate the list such that i have the following
ID Hours worked
11 9.5
12 8.0
13 4.0
14 13.0
15 8.0
Anyone have idea as to the best way to do this via VBA? Ideally i would like to keep the original list intact and create a separate consolodated list.
Bookmarks