I have two csv files one with four columns and another with four columns, for eg
File 1 File 2
ID,Contry,state,amt ID,Contry,state,amt
1,US,01,7 13,AU,0,7
2,UK,11,7 11,UK,0,7
3,AF,10,7 10,AF,0,7
4,US,08,7 14,SG,0,7
I need two compare the second two columns of file 1 with the first two coulmns of file2 and remove the duplicates of matched rows in file2 using vbscript. for eg the output needs to be
file3
ID,Contry,state,amt
13,AU,0,7
14,SG,0,7
Sample codes will be helpful.