Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/svg/2.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_Google Sheets Formula - Fatal编程技术网

Google sheets 在同一函数中扣除固定值和百分比

Google sheets 在同一函数中扣除固定值和百分比,google-sheets,google-sheets-formula,Google Sheets,Google Sheets Formula,我试图在一个函数中扣除一个单位值,在这个例子中是0.35,在这个例子中是5.79 到目前为止,我的函数如下所示: =I3-0.35*(1-5.79%) 他们各自工作-0.35将导致单元格读数为2.04。但是,一旦我将百分比扣除额添加到公式中,其读数为2.06,而预期结果应为~1.92。您必须添加括号 公式应如下所示: =(I3-0.35)*(1-5.79%) =(I3-0.35)*(1-5.79%)

我试图在一个函数中扣除一个单位值,在这个例子中是0.35,在这个例子中是5.79

到目前为止,我的函数如下所示:

=I3-0.35*(1-5.79%)

他们各自工作-0.35将导致单元格读数为2.04。但是,一旦我将百分比扣除额添加到公式中,其读数为2.06,而预期结果应为~1.92。

您必须添加括号 公式应如下所示:

=(I3-0.35)*(1-5.79%)
=(I3-0.35)*(1-5.79%)