Hi all,
I want to write a script to do the following job
I have a record like
day ID var Month
1 11 x March
2 11 y April
3 11 y March
4 11 y April
5 11 y March
1 22 y April
2 22 x march
3 33 x March
4 33 y March
5 33 y March
I want to creat a new data in such away that if Id with a var "y" march then I exclude the entire record of that ID.
So the desired out put will be
1 22 y April
2 22 x march
So ID 11 and 33 are excluded because both contain "y" in march.
Your assitance is highly appreciated in advance