I have an excel sheet similar to the following:
ColumnA ColumnB ColumnC
George 1 14
Edith 1 16
Archie 1 26
Betty 2 32
Fred 2 34
Wilma 3 38
Pebbles 4 40
Louise 4 42
Helen 4 44
Florence 4 46
I'd like to create a macro, that when run will create a new sheet, and it will be a list of the last instance of each value in column b, along with the value of column c from that same row.
So, the resulting worksheet would have the following data in it after the macro is run:
ColumnA ColumnB ColumnC
Archie 1 26
Fred 2 34
Wilma 3 38
Florence 4 46
Any suggestions on how to proceed?
Thanks in advance!
ColumnA ColumnB ColumnC
George 1 14
Edith 1 16
Archie 1 26
Betty 2 32
Fred 2 34
Wilma 3 38
Pebbles 4 40
Louise 4 42
Helen 4 44
Florence 4 46
I'd like to create a macro, that when run will create a new sheet, and it will be a list of the last instance of each value in column b, along with the value of column c from that same row.
So, the resulting worksheet would have the following data in it after the macro is run:
ColumnA ColumnB ColumnC
Archie 1 26
Fred 2 34
Wilma 3 38
Florence 4 46
Any suggestions on how to proceed?
Thanks in advance!