不能理解excel公式

时间:2016-10-12 22:56:23

标签: excel excel-formula formula formulas

我有两个值,这给了我一个excel的总数。

但我不明白公式,我必须将其转换为javascript,以使其在HTML上工作

 value1 =  33.238;
 value2 = 30%;
 formula = value1/(1-value2);
 total =  47.483

有人在excel中理解这个公式,所以我可以把它翻译成javacript吗?

我认为33.238的30%是9.971,总数是43.209但是excel上的这个公式让我感到困惑......

这就是我的代码中的内容

    var margin = 30;
    var margin_total = parseInt((+overhead_plus_hh * +margin)/100);
    var total = +overhead_plus_hh + +margin_total;

但是我没有把exame公式作为dame结果。

1 个答案:

答案 0 :(得分:0)

这是我的代码修复:

    var total = parseInt(+overhead_plus_hh / (1-(+margin/100)));
感谢slai花时间帮我理解excel公式。