if cell values are text in separate columns, then try placing this formula is adjacent column
=if(and(a1="F",b1="V"),1,0)
if cell values are in same column, the try
=if(a1="F V",1,0)
you can then sum or count the "ones". crude method, but works.
good luck.
-pmover