如何在 ssrs 表达式中添加两个字段?

发布于 2024-12-05 21:54:55 字数 366 浏览 1 评论 0原文

我已经生成了一个 ssrs 报告

,现在我有两个具有值的字段

第一个字段值=Fields!FirstNO.Value

第二个字段值=Fields!SecondNO.Value

现在我有一个字段average,我需要编写像

average = (Fields!FirstNO.Value+Fields!SecondNO.Value) / 这样 的表达式(Fields!SecondNO.Value)

我如何在表达式中写上面?直接如我所示或有任何其他语法请帮忙吗?

I have generated one ssrs report

now i have two fields having values

1st field value is =Fields!FirstNO.Value

2nd field value is =Fields!SecondNO.Value

now i have one field average and i need to write expression like

average = (Fields!FirstNO.Value+Fields!SecondNO.Value) / (Fields!SecondNO.Value)

how can i write above in expression?? directly as i shown or any other syntax is there please help?

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

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

发布评论

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

评论(1

零時差 2024-12-12 21:54:55

您确定这些字段是数字吗?也许尝试转换为数字,例如 =cint(Fields!FirstNO.Value)

Are you sure these fields are numeric? Maybe try convert to numeric, like =cint(Fields!FirstNO.Value)

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