Find for line with not null values at nth place in pipe delimited file

Hi,

I am trying to find the lines in a pipe delimited file where 11th column has not null values. Any help is appreciated. Need help asap please.

thanks in advance.

Try:

awk -F\| '$11x' file
awk -F\| 'x$n' n=11 file
awk -F'|' '$11' file
awk 'BEGIN {FS="|"} $11!="" {print}' ccn.txt > test.txt

this gives the result to what I am looking for..

thanks all for the responses shared..