How To Find "x" In A Column And Show "y" In Cell "z"

  • Thread starter Thread starter rcane
  • Start date Start date
R

rcane

Example:

A1 = aircraft type
B1 = flight time
C1 = jet category

Is there a way to maintain a list somewhere in the book of aircraf
types that are of the jet variety so that when "A2" is checked agains
the list it knows whether or not it is in fact a "jet" and will ente
the time (which is in "B2") under the jet category ("C2"). Otherwis
it simply will ignore adding flight time to the "C" column?

Did I just confuse everyone? Thanks in advance.


thanks

r
 
Hi

yep, i'm confused :) no, not really

in sheet 2 create a list of all the jets
(e.g. A3:A100)

then on the sheet with the formulas type the following into C2
=IF(ISNA(MATCH(A2,Sheet2!A3:A100,0)),"",B2)

Cheers
JulieD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top