Google 工作表根据行中单元格的内容格式化行
Google Sheets Format a Row depending on the contents of a cell in the row
我需要有关条件格式的帮助。
本质上问题如下:
如果单元格 'D3' 中的文本以字母 'BLDUK-ORD' 开头,那么我需要将整行变为橙色。
然后,如果单元格 'E3' 中有任何 text/numbers,则整行需要变为绿色。
这将需要在我的整个 google 工作表文档(目前超过 30,000 行数据)中实施。谢谢。
样本文件:
https://docs.google.com/spreadsheets/d/1inkIGMD11AeZ0uTdm60M2G2efu_lPv4Ak3IqGbcyCvU/edit?usp=sharing
尝试范围 A3:Z...
绿色:
=($E2<>"")*(REGEXMATCH($D2&"", "^BLDUK-ORD"))
橙色:
=REGEXMATCH($D3&"", "^BLDUK-ORD")
我需要有关条件格式的帮助。 本质上问题如下:
如果单元格 'D3' 中的文本以字母 'BLDUK-ORD' 开头,那么我需要将整行变为橙色。
然后,如果单元格 'E3' 中有任何 text/numbers,则整行需要变为绿色。
这将需要在我的整个 google 工作表文档(目前超过 30,000 行数据)中实施。谢谢。
样本文件: https://docs.google.com/spreadsheets/d/1inkIGMD11AeZ0uTdm60M2G2efu_lPv4Ak3IqGbcyCvU/edit?usp=sharing
尝试范围 A3:Z...
绿色:
=($E2<>"")*(REGEXMATCH($D2&"", "^BLDUK-ORD"))
橙色:
=REGEXMATCH($D3&"", "^BLDUK-ORD")