我只想询问如何解决我的问题。 在我的报告窗口中,有2个计算字段: 1.计算十进制的字段,我只显示两位小数(显示屏没问题)。 2.在我的另一个计算字段中,我使用第一个计算字段的结果乘以某个数字。问题出在这里,因为乘以的值不是从第一个字段显示的值。相反,它使用全部金额。
Scenario:
2,055,232.135 is the computed value and id displays 2,055,232.14 which is good.
But if i multiply it to 9 (2055232.135 * 9), the result is 18,497,089.215 which will be displayed as 18,497,089.22
The problem is I want that the displayed value (2,055,232.14) to be multiplied to 9 (2055232.14 * 9) which will then results to 18,497,089.26
我只想获得计算字段的第二个值,这样如果用户计算它,它就会相等。
答案 0 :(得分:0)
以下解决方案可用于计算字段:
String( Truncate( 2055232.135 * 9, 2), "#,##0.00")