#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default VLOOKUP

Hello,

I have created a cable lookup sheet where a technician can choose an
out-plant cable, enter the fiber optic count number, and then be returned
multiple fields of data on the cable such as fiber color, tube color, binder
color, etc..

My trouble is this I created a drop down list that references a worksheet
with the cable names. In one field I want the tech to choose the cable
location from the drop down list (H6). Next they enter the count of the fiber
(I6). I need the functions in F6, G6, J6, and K6 to be able to reference both
the cable ID and the fiber count within the same function.

Here is an example of the function as I have it now in F6 which returns
results solely on input in I6...
=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))

I want the same lookup to find its results based on both the cable ID and
the fiber count, this is because all cable locations will have the same fiber
count€¦

I can provide the file for review.

Thank you very much,
Todd

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default VLOOKUP

You may send the fle to me.

Essentially you have to create a column in front of the LOOKUP sheet which
combines the cable id and Fibre count using
=B1&C1

and then use the combination in VLLOKUP like
=VLOOKUP(H6&I6,....)

"FP Novice" wrote:

Hello,

I have created a cable lookup sheet where a technician can choose an
out-plant cable, enter the fiber optic count number, and then be returned
multiple fields of data on the cable such as fiber color, tube color, binder
color, etc..

My trouble is this I created a drop down list that references a worksheet
with the cable names. In one field I want the tech to choose the cable
location from the drop down list (H6). Next they enter the count of the fiber
(I6). I need the functions in F6, G6, J6, and K6 to be able to reference both
the cable ID and the fiber count within the same function.

Here is an example of the function as I have it now in F6 which returns
results solely on input in I6...
=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))

I want the same lookup to find its results based on both the cable ID and
the fiber count, this is because all cable locations will have the same fiber
count€¦

I can provide the file for review.

Thank you very much,
Todd

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default VLOOKUP

Hi,

Your if the results are text you might use

=INDEX(Table!$C$2:$C$14989,SUMPRODUCT(--(I6=Table!$B$2:$B$14989),--(H6=Table!$D$2:$D$14989),ROW(2:14989)),0)

In this example I am assuming the cable values are in column D of your table.


=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))
--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"FP Novice" wrote:

Hello,

I have created a cable lookup sheet where a technician can choose an
out-plant cable, enter the fiber optic count number, and then be returned
multiple fields of data on the cable such as fiber color, tube color, binder
color, etc..

My trouble is this I created a drop down list that references a worksheet
with the cable names. In one field I want the tech to choose the cable
location from the drop down list (H6). Next they enter the count of the fiber
(I6). I need the functions in F6, G6, J6, and K6 to be able to reference both
the cable ID and the fiber count within the same function.

Here is an example of the function as I have it now in F6 which returns
results solely on input in I6...
=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))

I want the same lookup to find its results based on both the cable ID and
the fiber count, this is because all cable locations will have the same fiber
count€¦

I can provide the file for review.

Thank you very much,
Todd

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default VLOOKUP

The file is on its way, thanks Sheeloo.

"Sheeloo" wrote:

You may send the fle to me.

Essentially you have to create a column in front of the LOOKUP sheet which
combines the cable id and Fibre count using
=B1&C1

and then use the combination in VLLOKUP like
=VLOOKUP(H6&I6,....)

"FP Novice" wrote:

Hello,

I have created a cable lookup sheet where a technician can choose an
out-plant cable, enter the fiber optic count number, and then be returned
multiple fields of data on the cable such as fiber color, tube color, binder
color, etc..

My trouble is this I created a drop down list that references a worksheet
with the cable names. In one field I want the tech to choose the cable
location from the drop down list (H6). Next they enter the count of the fiber
(I6). I need the functions in F6, G6, J6, and K6 to be able to reference both
the cable ID and the fiber count within the same function.

Here is an example of the function as I have it now in F6 which returns
results solely on input in I6...
=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))

I want the same lookup to find its results based on both the cable ID and
the fiber count, this is because all cable locations will have the same fiber
count€¦

I can provide the file for review.

Thank you very much,
Todd

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default VLOOKUP

=IF(ISERROR(VLOOKUP(H6&"-"&I6,Table!A:F,3,FALSE)),"",VLOOKUP(H6&"-"&I6,Table!A:F,3,FALSE))

That worked, thanks Sheeloo

Todd

"Sheeloo" wrote:

You may send the fle to me.

Essentially you have to create a column in front of the LOOKUP sheet which
combines the cable id and Fibre count using
=B1&C1

and then use the combination in VLLOKUP like
=VLOOKUP(H6&I6,....)

"FP Novice" wrote:

Hello,

I have created a cable lookup sheet where a technician can choose an
out-plant cable, enter the fiber optic count number, and then be returned
multiple fields of data on the cable such as fiber color, tube color, binder
color, etc..

My trouble is this I created a drop down list that references a worksheet
with the cable names. In one field I want the tech to choose the cable
location from the drop down list (H6). Next they enter the count of the fiber
(I6). I need the functions in F6, G6, J6, and K6 to be able to reference both
the cable ID and the fiber count within the same function.

Here is an example of the function as I have it now in F6 which returns
results solely on input in I6...
=IF(ISERROR(VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE )),"",VLOOKUP(I6,Table!$B$2:$F$14989,2,FALSE))

I want the same lookup to find its results based on both the cable ID and
the fiber count, this is because all cable locations will have the same fiber
count€¦

I can provide the file for review.

Thank you very much,
Todd

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 03:14 AM.

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

About Us

"It's about Microsoft Excel"