#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 390
Default vlookup?

I have the following 3 columns of data
000 0.198407405 PO3
001 0.207502916 CV3
002 0.984589896 CV3
003 0.715903627 FB2
It goes a lot further. I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. ie: find FB2 in Column 3, but 003 is outcome.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default vlookup?

try this

put this formula in F2

=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)




On Nov 16, 12:56*am, Bill wrote:
I have the following 3 columns of data
000 * * 0.198407405 * * PO3
001 * * 0.207502916 * * CV3
002 * * 0.984589896 * * CV3
003 * * 0.715903627 * * FB2
It goes a lot further. *I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. *ie: *find FB2 in Column 3, but 003 is outcome.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 390
Default vlookup?

That works. What about mutiple occurrences?

"muddan madhu" wrote:

try this

put this formula in F2

=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)




On Nov 16, 12:56 am, Bill wrote:
I have the following 3 columns of data
000 0.198407405 PO3
001 0.207502916 CV3
002 0.984589896 CV3
003 0.715903627 FB2
It goes a lot further. I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. ie: find FB2 in Column 3, but 003 is outcome.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default vlookup?

taking your example

in E2 you have CV3 and you need 001 in F2
in E3 you have CV3 and you need 002 in F3

in F2 put this formula ( use Ctrl + Shift + Enter )

=IF(ISERROR(INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$C$ 4,ROW($A$1:$A$4)),ROW
(1:1)),0)),"",INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$ C$4,ROW($A$1:$A
$4)),ROW(1:1)),0))



On Nov 16, 1:21*am, Bill wrote:
That works. *What about mutiple occurrences?

"muddan madhu" wrote:
try this


put this formula in F2


=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)


On Nov 16, 12:56 am, Bill wrote:
I have the following 3 columns of data
000 * * 0.198407405 * * PO3
001 * * 0.207502916 * * CV3
002 * * 0.984589896 * * CV3
003 * * 0.715903627 * * FB2
It goes a lot further. *I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. *ie: *find FB2 in Column 3, but 003 is outcome.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default vlookup?

change the ranges according to your need.

=IF(ISERROR(INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$C$ 10,ROW($A$1:$A
$10)),ROW
(1:1)),0)),"",INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$ C$10,ROW($A$1:$A
$10)),ROW(1:1)),0))



On Nov 16, 1:38*am, muddan madhu wrote:
taking your example

in E2 you have CV3 and you need 001 in F2
in E3 you have CV3 and you need 002 in F3

in F2 put this formula *( use Ctrl + Shift + Enter )

=IF(ISERROR(INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$C$ 4,ROW($A$1:$A$4)),ROW
(1:1)),0)),"",INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$ C$4,ROW($A$1:$A
$4)),ROW(1:1)),0))

On Nov 16, 1:21*am, Bill wrote:

That works. *What about mutiple occurrences?


"muddan madhu" wrote:
try this


put this formula in F2


=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)


On Nov 16, 12:56 am, Bill wrote:
I have the following 3 columns of data
000 * * 0.198407405 * * PO3
001 * * 0.207502916 * * CV3
002 * * 0.984589896 * * CV3
003 * * 0.715903627 * * FB2
It goes a lot further. *I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. *ie: *find FB2 in Column 3, but 003 is outcome.




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 390
Default vlookup?

I can not get this to work. I have the 3 columns of data in columns "m",
"n", and "o". There are 216 rows starting in row 1. From the example below,
I will create in column "r", the heading FB2. Under the heading, I want to
see each 3 digit number that corresponds to FB2, with out repeating the same
number.

"muddan madhu" wrote:

taking your example

in E2 you have CV3 and you need 001 in F2
in E3 you have CV3 and you need 002 in F3

in F2 put this formula ( use Ctrl + Shift + Enter )

=IF(ISERROR(INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$C$ 4,ROW($A$1:$A$4)),ROW
(1:1)),0)),"",INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$ C$4,ROW($A$1:$A
$4)),ROW(1:1)),0))



On Nov 16, 1:21 am, Bill wrote:
That works. What about mutiple occurrences?

"muddan madhu" wrote:
try this


put this formula in F2


=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)


On Nov 16, 12:56 am, Bill wrote:
I have the following 3 columns of data
000 0.198407405 PO3
001 0.207502916 CV3
002 0.984589896 CV3
003 0.715903627 FB2
It goes a lot further. I want to create a formula for another column that
will find a data point out of column 3, but enter the corresponding data from
column 1. ie: find FB2 in Column 3, but 003 is outcome.



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default vlookup?

See your later post

--
Biff
Microsoft Excel MVP


"Bill" wrote in message
...
I can not get this to work. I have the 3 columns of data in columns "m",
"n", and "o". There are 216 rows starting in row 1. From the example
below,
I will create in column "r", the heading FB2. Under the heading, I want
to
see each 3 digit number that corresponds to FB2, with out repeating the
same
number.

"muddan madhu" wrote:

taking your example

in E2 you have CV3 and you need 001 in F2
in E3 you have CV3 and you need 002 in F3

in F2 put this formula ( use Ctrl + Shift + Enter )

=IF(ISERROR(INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$C$ 4,ROW($A$1:$A$4)),ROW
(1:1)),0)),"",INDEX($A$1:$A$10,SMALL(IF($E2=$C$1:$ C$4,ROW($A$1:$A
$4)),ROW(1:1)),0))



On Nov 16, 1:21 am, Bill wrote:
That works. What about mutiple occurrences?

"muddan madhu" wrote:
try this

put this formula in F2

=INDEX(A2:A8,MATCH(E2,C2:C8,0),0)

On Nov 16, 12:56 am, Bill wrote:
I have the following 3 columns of data
000 0.198407405 PO3
001 0.207502916 CV3
002 0.984589896 CV3
003 0.715903627 FB2
It goes a lot further. I want to create a formula for another
column that
will find a data point out of column 3, but enter the corresponding
data from
column 1. ie: find FB2 in Column 3, but 003 is outcome.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VLookUp - Does the VLookUp return the exact information? Cpviv Excel Worksheet Functions 2 October 28th 08 09:57 AM
Vlookup in vlookup - taking the result as array name SupperDuck Excel Worksheet Functions 2 June 2nd 07 11:05 AM
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP buffgirl71 Excel Discussion (Misc queries) 12 November 14th 06 11:36 PM
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) MikeR-Oz New Users to Excel 1 March 22nd 06 09:01 AM
Vlookup info being used without vlookup table attached? Excel Worksheet Functions 0 January 25th 05 10:43 AM


All times are GMT +1. The time now is 05:21 PM.

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

About Us

"It's about Microsoft Excel"