Skip parsing the header record - Awk

Guys....
Got a scenario in which I need to skip parsing the header record while I do an awk.
Does awk has the flexibility to accomplish this?.
If so, how do we do this?.

Thanks !!!
-Anduzzi :slight_smile:

Put a condition in ur awk for NR != 1

Thanks "sudhamacs"