Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/excel/24.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
Excel 如何在输入任何数据之前保持空白?_Excel_Excel Formula - Fatal编程技术网

Excel 如何在输入任何数据之前保持空白?

Excel 如何在输入任何数据之前保持空白?,excel,excel-formula,Excel,Excel Formula,我尝试使用以下公式,但我希望在输入数据之前保持单元格为空。有没有关于我该怎么做的想法 =IF((AND(E50="Yes",E51="Yes",E52="Yes")), "Yes, the effect is material", "No, the effect is not material") 如果它对您是固定的,请投票。您可以使用如下构造: =IF(COUNTBLANK(E50:E52)=3,”,IF(COUNTIF(E50:E52,“Yes”)=3,“Yes,效果是实质性的”,“No,

我尝试使用以下公式,但我希望在输入数据之前保持单元格为空。有没有关于我该怎么做的想法

=IF((AND(E50="Yes",E51="Yes",E52="Yes")), "Yes, the effect is material", "No, the effect is not material")

如果它对您是固定的,请投票。

您可以使用如下构造:


=IF(COUNTBLANK(E50:E52)=3,”,IF(COUNTIF(E50:E52,“Yes”)=3,“Yes,效果是实质性的”,“No,效果不是实质性的”)

哪个单元格保持空白?您好!所以我想在所有E50、E51和E52中输入数据之前保持公式单元格为空。
If(E50&E51&E52=“”,”)
可能就足够了。这似乎不起作用。。。
=IF((AND(E50="Yes",E51="Yes",E52="Yes")), "Yes, the effect is material", IF(OR(E50="",E51="",E52=""), "", "No, the effect is not material"))