extract the lines

Hi,

I have a text file with 15 columns and i want to extract those lines of which 7th column is ABCD.

I think we can do this using awk but could not frame the command. Please help.

TIA
Prvn

awk '$7=="ABCD"' input_file.txt

Thanks Robotronic,

It worked great.

Prvn