Excel 系列(七) - 如何突破VLOOKUP 的255字元長度限制
Excel VLOOKUP 有一個255個字元長度的限制, 當您搜尋的cell裡字元長度一旦超過了255個字元時, VLOOKUP傳回值會是#VALUE!
解決方法很簡單, 使用 INDEX MATCH即可.
<read more>
公式口語化就是:
=INDEX(回傳值範圍, MATCH(TRUE, INDEX(搜尋目標範圍=搜尋對應格, 0),0))
=INDEX(Range of Return Value, MATCH(TRUE, INDEX(Range of Search Target=Search Cell, 0),0))

X