dim section as string
dim admn as number
dim name as string
dim roll_no as number
table
rooll_no admn name section
1 --------- 99 ---- abc ---- a
2 --------- 100 ---- def ---- a
3 --------- 101 ---- ghi ---- a
1 --------- 102 ---- abc ---- b
2 --------- 103 ---- def ---- b
3 --------- 104 ---- jkl ---- b
1 --------- 107 ---- mno ---- c
2 --------- 109 ---- klm ---- c
4 --------- 111 ---- nok ---- c
this is table
so i want do a coding in vba using group by method
because
there is three sections a,b,c so
i like to generate section wise roll number
so please give me exampe
dim admn as number
dim name as string
dim roll_no as number
table
rooll_no admn name section
1 --------- 99 ---- abc ---- a
2 --------- 100 ---- def ---- a
3 --------- 101 ---- ghi ---- a
1 --------- 102 ---- abc ---- b
2 --------- 103 ---- def ---- b
3 --------- 104 ---- jkl ---- b
1 --------- 107 ---- mno ---- c
2 --------- 109 ---- klm ---- c
4 --------- 111 ---- nok ---- c
this is table
so i want do a coding in vba using group by method
because
there is three sections a,b,c so
i like to generate section wise roll number
so please give me exampe
Comment