ASp.net将公式字段值传递给水晶报表

发布于 2025-01-05 23:52:06 字数 642 浏览 0 评论 0原文

我是水晶报告的新手。我现在面临一个问题。如何将多个公式字段传递到我的水晶报表? 这是我的编码

   private void ConfigureCrystalReports()
    {
        ReportDocument  RepDoc = new ReportDocument();

        nsFilterData.Report report = (nsFilterData.Report)Session["report"];
        RepDoc.Load(Server.MapPath(report.reportPath));

        CrystalReportViewer1.SelectionFormula = report.selectForumula;
        RepDoc.DataDefinition.FormulaFields["test1"].Text = "2";
        RepDoc.DataDefinition.FormulaFields["test2"].Text = "abc";
         CrystalReportViewer1.ReportSource = RepDoc;

    }

在我的水晶报告中,我有两个公式字段,名称为“test1”和“test2”。如何将值传递给水晶报表?感谢您

i am new to crystal report. I now facing a problem. How can i pass multiple formula field to my crystal report?
Here is my coding

   private void ConfigureCrystalReports()
    {
        ReportDocument  RepDoc = new ReportDocument();

        nsFilterData.Report report = (nsFilterData.Report)Session["report"];
        RepDoc.Load(Server.MapPath(report.reportPath));

        CrystalReportViewer1.SelectionFormula = report.selectForumula;
        RepDoc.DataDefinition.FormulaFields["test1"].Text = "2";
        RepDoc.DataDefinition.FormulaFields["test2"].Text = "abc";
         CrystalReportViewer1.ReportSource = RepDoc;

    }

In my crystal report , i got two formula field which name "test1" and "test2". How do i pass the value to crystal report? Thanks you

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

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

发布评论

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

评论(1

聽兲甴掵 2025-01-12 23:52:06

如果您想将值传递到水晶报表,请使用参数,然后在公式字段中使用这些参数值...

如果您清楚地了解了我的要求,我可以在这方面为您提供更多帮助!

If you want to pass values to your Crystal Report, use Parameters, and then use those parameters values in formula fields...

If you get me your requirements clearly, I can help u more on this !

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