Transpose with Match ?

S

Steve D

Hi,
Was wondering if possible to use the Transpose function with another
function. On Sheet 1, I have names in C3:C20, with data in each row of the
names, from D3:AH20. What I want to do then, is on Sheet 2, B2, anyone of
those names from Sheet 1 can be entered, then have the data from Sheet 1 on
that row that matches the name entered, be transposed to F3:F33 on Sheet 2.
So anytime the name is changed on Sheet 2, B2, the correct data is transposed
from Sheet 1. Thanks in advance for any help or insight on this. Steve
 
V

vezerid

Name in Sheet2!B2. Select F3:F33 in Sheet2. Enter the following array
formula:

=TRANSPOSE(INDEX(Sheet1!C3:AH20,MATCH(B2,Sheet1!C3:C20,0),0))

This is an array formula hence commit with Shift+Ctrl+Enter

HTH
Kostis Vezerides
 
B

Bernard Liengme

Transpose is not needed
In F3 of Sheet2 enter =VLOOKUP($B$2,Sheet1!$C$3:$AH$20,ROW()-1,FALSE)
Copy down the column
best wishes
 
S

Steve D

Great, thanks for the help.

vezerid said:
Name in Sheet2!B2. Select F3:F33 in Sheet2. Enter the following array
formula:

=TRANSPOSE(INDEX(Sheet1!C3:AH20,MATCH(B2,Sheet1!C3:C20,0),0))

This is an array formula hence commit with Shift+Ctrl+Enter

HTH
Kostis Vezerides
 

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