View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Searching for a value in an Array

I completely understand how your data is laid out and the formula I gave you
should do what you want.

Show me the exact formula that you used. an example of the data would help
too.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Farah" wrote in message
...
It gave me an error which is #NUM though I checked it many times. The

point
is that in the countries list, the country is repeated many times, and in

the
machine model column, the machine is repeated many times, you need to

create
a lookup function which will search for the machine and then when it

founds
the machine search in another column for the country and then when both

the
machine and the country matches your search criteria you need to get the
price from another column, which means basically that you have a two

columns
lookup procedure.

Regards,

"Bob Phillips" wrote:

Which is exactly what we gave you. Did you try it? what happened when

you
did?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Farah" wrote in message
...
Guys,

It is not working, see I can pass you the files if possible just tell

me
how
as I am new to this whole thing. The point is that I have many

machines
for
one country and I have many countries, to give you an idea, I have

seven
coutries and for each country and I have more than three hundred

machines
prices. The system given me a dupm showing in one column the country

name
and
in another column the machine name and then the price. I need a

function
that
checks the country in one column and in the other columnn it checks

the
machine, if both are OK then it should give me the price which is in

another
column.

Regards,
Farah

"Aladin Akyurek" wrote:

Probably it's easier to understand a bit faster version...


=INDEX(C1:C100,MATCH(1,IF(A1:A100="country",IF(B1: B100="machine",1)),0))

which still needs to be confirmed with control+shift+enter.

Jim May wrote:
Bob,
I'm getting closer and closer to understanding this stuff, but in

this
example there is one small piece I haven't got yet,

Your Match() has 3 elements:
1) the 1,
2) the combination of the ranges (Col A and ColB as one

parameter)
3) the 0, which is an exact match)

So 1 (in this case) is the lookup value, hummmm.. not sure I'm

getting the
meaning here - I take 1 to be the value I'm looking for,

confused

Tks in Advance,
Jim


"Bob Phillips" wrote:


=INDEX(C1:C100,MATCH(1,(A1:A100="country")*(B1:B10 0="machine"),0))

which is an array formula, it should be committed with

Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Farah" wrote in message
...
I have a master price list were I have in column A the country

name,
and
in
column B the machine model number and in column C the price.
Obviously you can find the same machine for many countries with

different
prices, I need a formula were I can extract for a certain

country
the
price
of a certain machine.