Remove all diacritics without script with a single formula for use in all cells without making calls to Google API

前端 未结 1 799
我在风中等你
我在风中等你 2021-01-07 11:07

I created a formula that removes diacritics but needs to make calls through an ImportDATA. If I use this formula on every cell I need, it will exceed the call l

1条回答
  •  感情败类
    2021-01-07 11:51

    =ARRAYFORMULA(PROPER(IFERROR(REGEXREPLACE(L2:L, TEXTJOIN("|", 1, J2:J),
     VLOOKUP(REGEXEXTRACT(L2:L, TEXTJOIN("|", 1, J2:J)), J2:K, 2*
     SIGN(ROW(A2:A)), 0)&""), L2:L)))
    

    0 讨论(0)
提交回复
热议问题