lookup options

D

Derrick

hi!
lets say i have 2 sheets.
1-> calcs, 2-> Data
i want to lookup a value from the calcs sheet, and have it return a
description of some steel that i'll be using.
normally thats a lookup(value, Array, Return Array) sort of function. But,
here's the twist.
the description is actually 2 adjacent cells.. like so

Calcs Data
a b | a b
c
1 item | 1 item Type Size
2 70 "tube 2x4x.125" | ...72 71 tube 2x4x.125

input 70, return the 2 descriptions in one cell.
is this possible???
 
J

Jacob Skaria

=lookup(value, Array, Return Array colB) & lookup(value, Array, Return Array
ColC)

If this post helps click Yes
 
D

Derrick

thanks!

i changed it slightly - i had forgotten about the '&' symbol.

lookup(Value, Array, ReturnArrayColB &" - " &ReturnArrayColC)

which also worked.
 

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

Top