Hyla there.
I need create a macro to filter with three different conditions. below is the input table.
SrNo CusName Status date
1 a five star 12/7/2012
2 b four star 12/13/2012
3 c two star 12/11/2012
4 b two star 12/10/2012
5 c one star 12/13/2012
6 c two star 12/7/2012
7 d two star 12/10/2012
8 e two star 12/10/2012
.
.
.etc
And I need output summary table like this.
condition 1: unique cus name and dates only
date 1
cus name one star two star three star four star five star
a 1 0 1 3 1
b 4 0 1 3 1
c 1 4 0 3 1
d 5 5 1 3 9
e 1 0 1 4 1
date 2
cus name one star two star three star four star five star
a 1 0 1 3 1
b 4 0 1 3 1
c 1 4 0 3 1
d 5 5 1 3 9
e 1 0 1 4 1
count goes on based on unique date count.
please help me on this.
I need create a macro to filter with three different conditions. below is the input table.
SrNo CusName Status date
1 a five star 12/7/2012
2 b four star 12/13/2012
3 c two star 12/11/2012
4 b two star 12/10/2012
5 c one star 12/13/2012
6 c two star 12/7/2012
7 d two star 12/10/2012
8 e two star 12/10/2012
.
.
.etc
And I need output summary table like this.
condition 1: unique cus name and dates only
date 1
cus name one star two star three star four star five star
a 1 0 1 3 1
b 4 0 1 3 1
c 1 4 0 3 1
d 5 5 1 3 9
e 1 0 1 4 1
date 2
cus name one star two star three star four star five star
a 1 0 1 3 1
b 4 0 1 3 1
c 1 4 0 3 1
d 5 5 1 3 9
e 1 0 1 4 1
count goes on based on unique date count.
please help me on this.