Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 excel 中打开 CSV 时,我试图让下面的 excel 公式留在单个单元格中。
=IFERROR(IF(match(indirect(\"j\"&row()),K:K,0),Y,),N)
任何帮助将不胜感激。
尝试,
=IFERROR(if(match(indirect(CHAR(74)&row()),K:K,0),CHAR(89),TEXT(,)),CHAR(78)) 'alternate =if(ISNUMBER(match(indirect(CHAR(74)&row()), K:K, 0)), CHAR(89), CHAR(78))
这使用了生成不带引号的字符串的替代方法。