1

so what Iam trying to do is:

Find a certain string in Spreadsheet1!A:A and give the value that is in B:B right next to the found value in A:A as an output.

My approach:

=VLOOKUP(B1;Spreadsheet1!A:A;Spreadsheet1!B:B)

The Problem:

VLOOKUP wont give strings back as a value. But I need the string for another formula. Is there any workaround, that does not include scripting?

Thank you!

4

1 回答 1

3

尝试这个:

=VLOOKUP(B1;Spreadsheet1!A:B;2,False)

B1应该是可以在Spreadsheet1!A:A中找到的值

于 2015-07-30T09:44:59.140 回答