awk to select a column from particular line number

The awk command awk -F: '{print $1}' test1 gives the first columns of all the lines in file ,is there some command to get a particular column from particular line .
Any help is appreciated.
thanks arif

Yes it is possible to select one particular line from a given file thru awk, but you have to provide here the selection criteria.

My file is comma delimited file ,I have to read the first column from second line and store it in a variable.Can you give me the exact syntax
Thanks

var=`awk '{getline;print $1;exit}' file`

hope this will work

use nawk on solaris