The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
This is retarded. I can't find anything similar to this at all and it's driving me crazy. What it needs to do is match a number from a cell to a number in a table and show two corresponding columns in the same row with the results separated by a space.
If CELL is a reference to the value you're looking for, and TABLE is the table you need to search in, and X and Y are the numbers of the two columns you want to pick up:
So it does two VLOOKUP searches to find the two columns you need. The CONCATENATE() command merges them into one string, separated by a space (the " " in the middle).
Note that I used semicolons to separate the parameters because that's how my version of Excel rolls. Yours are probably commas.
Posts
=CONCATENATE(VLOOKUP(CELL; TABLE; X; FALSE);" ";VLOOKUP(CELL; TABLE; Y; FALSE))
So it does two VLOOKUP searches to find the two columns you need. The CONCATENATE() command merges them into one string, separated by a space (the " " in the middle).
Note that I used semicolons to separate the parameters because that's how my version of Excel rolls. Yours are probably commas.