My excel data look like this. I have two column, A and B.
A | B
Aaron | a,b,c
Mark | b,c,d
Neil | a,b,d,e
Tess | c,d,e
When i use auto-filter of excel, the list of possible value for filter is a,b,c , b,c,d , a,b,d,e , and c,d,e. This is not what i want. I want to filter the data separately by a by b by c by d by e.
To make things clear, i need to implement a new filter function. When I click a filter button, filter list containing select all, a, b, c, d and e will be display. When I checked a, rows that contains a in column B will be display. In this case, row 1 and 3 (Aaron and Neil).
I need a macro to help me with this.
Thanks!