Excel MATCH character limit

后端 未结 3 1356
无人及你
无人及你 2021-01-14 21:33

I use the following formula =INDEX(Dict!A:A,MATCH(A2,Dict!A:A,0),1) but MATCH only works with text below 256 characters. Any way to overcome this limitiatio

3条回答
  •  忘掉有多难
    2021-01-14 22:01

    To accommodate partial matches use SEARCH like this:

    =INDEX(Dict!A:A,MATCH(TRUE,INDEX(ISNUMBER(SEARCH(A2,Dict!A:A)),0),0))

    That will work to return a value > 256 characters but A2 can't be > 256 characters

提交回复
热议问题