Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel 2003

Status
Not open for further replies.

Bollywood

Chemical
Joined
Oct 15, 2008
Messages
2
Location
US
Primary Secondary
F V
P T
F T
L V
H Y
F V
T T
X V
F I
F T
T T
P V
H V
Z SC
H V
F V
L V
H Y
F I

Above excel data on "sheet1". On sheet 2 tryin to count say e.g. number of "FV"s. Any suggestion for formula.
Thanks.
 
If you use VBA, you can just do a count for y=1 to 50 IF cells(1,y)=F AND cells(2,y)=V then x=x+1, display x
 
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
 
Bollywood - this question should have went in the Engineering Spreadsheets forum. Red Flag your post and ask management to move it. You may get some other advice/options over there.

Good luck,
Latexman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top