Hi,
I need help to prepare a report with the following format:-
Input
ID Name
1 A
2 B
3 B
4 C
5 C
6 A
7 D
8 C
I am able to get the unique list using the array formula:-
But need help to create the report as per above format.Looking for a solution that can handle any addition or deletion of Name
I need help to prepare a report with the following format:-
Input
ID Name
1 A
2 B
3 B
4 C
5 C
6 A
7 D
8 C
Code:
Output
Name ID
A 1
6
B 2
3
C 4
5
8
D 7
Code:
=INDEX($B$3:$B$10, MATCH(0, COUNTIF($G$2:G2, $B$3:$B$10), 0))
But need help to create the report as per above format.Looking for a solution that can handle any addition or deletion of Name