Podio app计算 - 四舍五入至小数点后两位

时间:2017-01-07 17:44:26

标签: decimal podio calculation

我有一个Podio应用程序,它将两个不同数字字段中的几个数字相乘(参见屏幕截图),并将结果放入“要付费的总计”字段中。问题是它不会四舍五入到小数点后两位。有时它确实如此,有时却没有。有时它会显示3个小数位,有时会显示更多。如何将其四舍五入到小数点后两位?

我在计算字段中输入的代码是     “$”+ @工作小时数(来自timedoctor.com)* @Hourly Rate

http://screencast.com/t/85cxDP2CUWJ

1 个答案:

答案 0 :(得分:2)

请尝试:

function numberWithoutCommas(x) {
   return parseFloat(x).toFixed(2).toString();
}

"$" + numberWithoutCommas(@Price * @Count)

@Price和@Count必须替换为您的变量,这些数字在我的示例中。