表格单元格中包含多个 bigint 列和decimal 列

发布于 2024-11-07 16:03:20 字数 223 浏览 0 评论 0原文

我在数据库中有一个bigint 字段和一个decimal 字段,我想在reportingservices 的表格单元格中添加这些字段。

我的代码是这样的:

(Fields!dpr_unitprice.Value) * (Fields!dpr_PurchasedQuntity.Value)

但结果不正确。

我怎样才能得到正确的结果?

I have a field of bigint and a field of decimal in data base and i would like to multiple those fields in a tablecell in reportingservices.

My code is like this:

(Fields!dpr_unitprice.Value) * (Fields!dpr_PurchasedQuntity.Value)

but the result is not correct.

How can i get the correct result?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无需解释 2024-11-14 16:03:20

您的数据库引擎可能返回一个 bigint。

在将两者相乘之前,将 bigint 值转换为小数。

It might be that your DB engine is returning a bigint.

Cast the bigint value as a decimal before multiplying the two.

只涨不跌 2024-11-14 16:03:20

您必须将两个字段转换为您想要使用的单位,因此如果您想使用十进制,那么:

cdec((Fields!dpr_unitprice.Value)) * (Fields!dpr_PurchasedQuntity.Value)

You have to cast both fields to the unit you want to work with, so if you want to work with decimal then:

cdec((Fields!dpr_unitprice.Value)) * (Fields!dpr_PurchasedQuntity.Value)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文