A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

IF on a range of cells



 
 
Thread Tools Display Modes
  #1  
Old May 27th, 2010, 07:06 AM posted to microsoft.public.excel,microsoft.public.excel.worksheet.functions
Syed Zeeshan Haider[_2_]
external usenet poster
 
Posts: 13
Default IF on a range of cells

Hello Everybody,
I am working in Excel 2003 with two lists, dates and prices in columns A and
B respectively.
I am trying to use IF worksheet function to find if any prices in the prices
column match a certain figure (say $24), if a match is found I want to
return a corresponding date from the adjacent column, i.e. column A.

For example, if I am searching for $24 in prices list and it is found in B37
then I want to return the date from A37.

Is it possible? If yes then how? Despite my years of extensive experience
with Excel, I haven't been able to figure that out.

Thank you,
--
Syed Zeeshan Haider


  #2  
Old May 27th, 2010, 07:49 AM posted to microsoft.public.excel,microsoft.public.excel.worksheet.functions
Harald Staff[_2_]
external usenet poster
 
Posts: 198
Default IF on a range of cells

Hi Syed

With 24 in A1 ant the list in sheet Prices starting in row 1, match returns
the row number where 24 is found:

=MATCH(A1,Prices!B1:B999,0)

you want to go that many rows down the A column, which is done with index

=INDEX(Prices!A1:A999,MATCH(A1,Prices!B1:B999,0))

HTH. Best wishes Harald


"Syed Zeeshan Haider" wrote in message
...
Hello Everybody,
I am working in Excel 2003 with two lists, dates and prices in columns A
and
B respectively.
I am trying to use IF worksheet function to find if any prices in the
prices
column match a certain figure (say $24), if a match is found I want to
return a corresponding date from the adjacent column, i.e. column A.

For example, if I am searching for $24 in prices list and it is found in
B37
then I want to return the date from A37.

Is it possible? If yes then how? Despite my years of extensive experience
with Excel, I haven't been able to figure that out.

Thank you,
--
Syed Zeeshan Haider


  #3  
Old May 27th, 2010, 10:04 PM posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel
Ms-Exl-Learner
external usenet poster
 
Posts: 522
Default IF on a range of cells

If you want to mention the value in formula itself then use the below
formula:-
=INDEX(A:A,MATCH(24,B:B,0))

If you want to set the C1 (24) as input cell then use the below formula:-
=INDEX(A:A,MATCH(C1,B:B,0))

Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"Syed Zeeshan Haider" wrote:

Hello Everybody,
I am working in Excel 2003 with two lists, dates and prices in columns A and
B respectively.
I am trying to use IF worksheet function to find if any prices in the prices
column match a certain figure (say $24), if a match is found I want to
return a corresponding date from the adjacent column, i.e. column A.

For example, if I am searching for $24 in prices list and it is found in B37
then I want to return the date from A37.

Is it possible? If yes then how? Despite my years of extensive experience
with Excel, I haven't been able to figure that out.

Thank you,
--
Syed Zeeshan Haider


.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:47 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.