Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 如果其他列为空,则将列加粗_Google Sheets_Gs Conditional Formatting - Fatal编程技术网

Google sheets 如果其他列为空,则将列加粗

Google sheets 如果其他列为空,则将列加粗,google-sheets,gs-conditional-formatting,Google Sheets,Gs Conditional Formatting,我有两列A和B。都包含文本。 如果A列中的对应值为空,我需要B列中的值变为粗体 例如: A B bold 1 one 2 two bold 3 three A B 大胆的 一个 二二 大胆的 三三 您希望将条件格式与逻辑函数=ISBLANK(A1)相结合 打开“条件格式”选项卡后,将“如果…”格式设置更改为“自定义公式”,如果这不是一个精确的转换,则该转换位于列表底部 弹出一个小窗口,在这里添加语句=ISBLANK(A1)。A1是它检查的区域。对第一行

我有两列A和B。都包含文本。
如果A列中的对应值为空,我需要B列中的值变为粗体

例如:

A B bold 1 one 2 two bold 3 three A B 大胆的 一个 二二 大胆的 三三
您希望将条件格式与逻辑函数
=ISBLANK(A1)
相结合

打开“条件格式”选项卡后,将“如果…”格式设置更改为“自定义公式”,如果这不是一个精确的转换,则该转换位于列表底部

弹出一个小窗口,在这里添加语句
=ISBLANK(A1)
。A1是它检查的区域。对第一行执行此操作并在图纸编辑器中展开,它将复制到表的其余部分

我在示例中留下了一个带有其他格式的日程表。您将在右上角找到您要求的解决方案

希望这能帮到你:)