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.
所以我试图用不同的颜色制作几个不同的列表,然后我希望谷歌表格自动为列表中显示的任何内容着色。我一直在尝试几种不同的方法,并找到了一种可行但不是真正可扩展的解决方案。
我不擅长解释事情,所以希望这个例子比我做得更好 这里的例子表
黄名单:
=REGEXMATCH(G3, TEXTJOIN("|", 1, $B:$B))
绿名单:
=REGEXMATCH(G3, TEXTJOIN("|", 1, $C:$C))
蓝名单:
=REGEXMATCH(G3, TEXTJOIN("|", 1, $D:$D))
红名单:
=REGEXMATCH(G3, TEXTJOIN("|", 1, $E:$E))
鲶鱼修复:
=REGEXMATCH(LOWER(G3), LOWER("^"&TEXTJOIN("$|^", 1, $B:$B)&"$"))