Forum Discussion
De_Jaro
Mar 10, 2020Copper Contributor
Sverweis
Hallo,
Hab folgendes Problem:
"Sverweis" funktioniert nicht richtig, siehe Beispiel (A23).
Es wird in der ersten Spalte (A) auf den Wert aus A1 gesucht. In A23 soll das Ergebnis angezeigt werden, das aus der Spalte B gezogen werden soll.
Bitte um Unterstützung und besten Dank im Vorfeld.
Mit freundlichen Grüßen
Iaroslav
4 Replies
Sort By
- De_JaroCopper ContributorBesten Dank, hat geholfen.
Hi De_Jaro
Please note in your formula the value FALSE is missing, your formula should read as
=VLOOKUP(A1,A3:B20,2,FALSE)
attached file for your reference
Regards, Faraz Shaikh | MCT, MIE, MOS Master, Excel Expert
If you find the above solution resolved your query don't forget mark as Official Answer.
- Riny_van_EekelenPlatinum Contributor
Use this one instead. You must add "FALSCH" at the end because your list is not sorted.
=SVERWEIS(A1;A3:B20;2;FALSCH)
- SaviaIron ContributorYou must include the fourth argument of VLOOKUP as FALSE. It defaults to approximate matching which is inaccurate.
=VLOOKUP(A1,A3:B20,2,FALSE)